/* ==========================================================================
   Clientele & Landmark Installations — Bento Grid System (Alignment Fixed)
   ========================================================================== */

/* ─── Section Shell ─────────────────────────────────────────────────────── */
.featured-work-section {
  padding: 100px 0 120px;
  background: #F4F4F0;
  position: relative;
}

/* ─── Section Header (Split Row) ─────────────────────────────────────────── */
.featured-header-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 48px;
  margin-bottom: 56px;
}

/* Left column: flex column so badge → title → subtext stack correctly */
.featured-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.featured-badge-pill {
  display: flex;
  /* FIX: was inline-flex — margin-bottom was ignored */
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #19705F;
  margin-bottom: 16px;
  /* Now works as block-level flex */
}

.featured-badge-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #19705F;
  animation: pulseDot 2.4s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

.featured-main-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #0D1117;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.featured-sub-text {
  font-size: 0.95rem;
  color: #6B7280;
  max-width: 700px;
  line-height: 1.7;
  font-weight: 400;
  margin: 16px 0 0 0;
  /* Reset all margins — no left indent */
  padding: 0;
  text-align: left;
  width: 100%;
  /* Fill the full left column width */
  align-self: stretch;
  /* Stretch to column edge, text-align does the left alignment */
}

/* ─── Metrics — 4 Stat Tiles (right column) ─────────────────────────────── */
.portfolio-metrics-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: start;
  /* FIX: explicit, so it doesn't stretch full height */
}

.metric-pill-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 110px;
  transition: border-color 0.2s;
}

.metric-pill-item:hover {
  border-color: #19705F;
}

.metric-pill-icon {
  display: none;
}

.metric-pill-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0D1117;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.metric-pill-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  line-height: 1.3;
}

/* ─── Landmark Section Heading ───────────────────────────────────────────── */
.landmark-showcase-wrap {
  margin-bottom: 64px;
}

.landmark-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.landmark-heading-left h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px 0;
}

.landmark-heading-left h3 i {
  color: #19705F;
  font-size: 0.8rem;
}

.landmark-heading-left p {
  font-size: 0.82rem;
  color: #6B7280;
  margin: 0;
}

.landmark-view-nav {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  gap: 4px;
}

.landmark-nav-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.landmark-nav-btn:hover {
  color: #111827;
}

.landmark-nav-btn.active {
  background: #19705F;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(25, 112, 95, 0.25);
}

.landmark-tab-pane {
  display: none;
}

.landmark-tab-pane.active {
  display: block;
  animation: fadeInLandmark 0.3s ease;
}

@keyframes fadeInLandmark {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── 5-Year Portfolio Grid Styles (27 Projects) ─────────────────────────── */
.portfolio-5yr-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 18px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
}

.portfolio-5yr-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-5yr-btn {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portfolio-5yr-btn:hover {
  border-color: #19705F;
  color: #19705F;
}

.portfolio-5yr-btn.active {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
}

.portfolio-5yr-stat-summary {
  font-size: 0.75rem;
  font-weight: 700;
  color: #19705F;
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-5yr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.project-5yr-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
}

.project-5yr-card:hover {
  border-color: rgba(25, 112, 95, 0.4);
  box-shadow: 0 8px 24px rgba(25, 112, 95, 0.08);
  transform: translateY(-2px);
}

.project-5yr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.project-5yr-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4B5563;
  background: #F3F4F6;
  padding: 2px 8px;
  border-radius: 6px;
}

.project-5yr-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: #19705F;
  background: rgba(25, 112, 95, 0.08);
  border: 1px solid rgba(25, 112, 95, 0.16);
  padding: 3px 9px;
  border-radius: 999px;
}

.project-5yr-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 6px 0;
}

.project-5yr-location {
  font-size: 0.78rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.project-5yr-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #E5E7EB;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: #F9FAFB;
  color: #374151;
  border: 1px solid #E5E7EB;
}

.spec-chip.squash {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
}

.spec-chip.badminton {
  background: #EFF6FF;
  color: #1E40AF;
  border-color: #BFDBFE;
}

.spec-chip.partner {
  background: #FEF3C7;
  color: #92400E;
  border-color: #FDE68A;
  font-size: 0.7rem;
}

.spec-chip.wip {
  background: #FDF2F8;
  color: #9D174D;
  border-color: #FBCFE8;
}

/* ─── Bento Grid — 4 columns ─────────────────────────────────────────────── */
.landmark-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  /* FIX: ensures rows have consistent min-height */
  gap: 12px;
}

/* Grid area assignments — explicit for clean bento layout */
.bento-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Hero 2×2 */
.bento-card:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

/* Wide right top */
.bento-card:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* Small */
.bento-card:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

/* Small */
.bento-card:nth-child(5) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

/* Small */
.bento-card:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

/* Wide middle */
.bento-card:nth-child(7) {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

/* Small */
.bento-card:nth-child(8) {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
}

/* Full strip */

/* ─── Base Bento Card ────────────────────────────────────────────────────── */
.bento-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px;
  /* FIX: reduced from 28px for tighter feel */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* FIX: was space-between, caused floating content */
  gap: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(25, 112, 95, 0.4);
  box-shadow: 0 8px 32px rgba(25, 112, 95, 0.08);
}

/* Hero card — dark */
.bento-card--hero {
  background: #0D1117;
  border-color: #0D1117;
  color: #FFFFFF;
  justify-content: space-between;
  /* Hero: meta top, body bottom — intentional */
}

.bento-card--hero:hover {
  border-color: #0D1117;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ─── Strip Card — Premium Showcase Banner ───────────────────────────────── */
.bento-card--strip {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 28px 36px;
  background: #0D1117;             /* Dark charcoal — premium feel */
  border-color: #0D1117;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: auto;
}


/* Subtle grid texture overlay */
.bento-card--strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(25,112,95,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bento-card--strip:hover {
  border-color: #1a1f2e;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ─── Card Meta (top row: category + court count) ────────────────────────── */
.bento-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  /* FIX: consistent gap below meta */
  flex-wrap: nowrap;
  /* FIX: prevent wrapping that breaks alignment */
}

.bento-type-tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  white-space: nowrap;
}

.bento-card--hero .bento-type-tag {
  color: rgba(255, 255, 255, 0.4);
}

.bento-card--strip .bento-type-tag {
  color: rgba(255, 255, 255, 0.5);
}

.bento-court-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #19705F;
  background: rgba(25, 112, 95, 0.1);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.bento-card--hero .bento-court-badge {
  background: rgba(111, 208, 152, 0.2);
  color: #6FD098;
}

.bento-card--strip .bento-court-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* ─── Card Body ──────────────────────────────────────────────────────────── */
.bento-card-body {
  display: flex;
  /* FIX: flex column so children stack cleanly */
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.bento-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0D1117;
  line-height: 1.3;
  margin: 0;
}

.bento-card--hero .bento-name {
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.bento-card--strip .bento-name {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.bento-location {
  font-size: 0.78rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.bento-location i {
  font-size: 0.65rem;
  flex-shrink: 0;
}

.bento-card--hero .bento-location {
  color: rgba(255, 255, 255, 0.35);
}

.bento-card--strip .bento-location {
  color: rgba(255, 255, 255, 0.55);
}

.bento-spec {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
  margin-top: 10px;
}

.bento-card--hero .bento-spec {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ─── Strip Card Inner Layout ────────────────────────────────────────────── */

/* Left: Icon medallion block */
.strip-icon-block {
  flex: 0 0 auto;
  margin-right: 32px;
  position: relative;
  z-index: 1;
}

.strip-icon-medallion {
  width: 56px;
  height: 56px;
  background: rgba(25, 112, 95, 0.2);
  border: 1px solid rgba(25, 112, 95, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2DD4BF;
  font-size: 1.3rem;
}

/* Center: main content */
.strip-main-block {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.strip-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.strip-category-tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2DD4BF;
}

.strip-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.strip-location-tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

.strip-location-tag i { font-size: 0.6rem; }

.strip-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.strip-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

/* Right: Stat bubbles */
.strip-stats-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 40px;
  position: relative;
  z-index: 1;
}

.strip-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 68px;
  text-align: center;
}

.strip-stat-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.strip-stat-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* Decorative accent circle on hero */
.bento-card--hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(25, 112, 95, 0.12);
  pointer-events: none;
}

/* ─── SEARCH + FILTER BAR (2-COLUMN BENTO CONTROLS) ───────────────────────── */
.clientele-controls-wrapper {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Left Column: Search Bar */
.clientele-search-row {
  flex: 0 1 340px;
  min-width: 240px;
  display: flex;
  align-items: center;
  margin: 0;
}

.clientele-search-box-unified {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.clientele-search-box-unified i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.15s ease;
  line-height: 1;
}

.clientele-search-unified-input {
  width: 100%;
  height: 40px;
  padding: 0 16px 0 40px;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #F9FAFB;
  color: #0D1117;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
  margin: 0;
  display: block;
}

.clientele-search-unified-input::placeholder {
  color: #9CA3AF;
}

.clientele-search-unified-input:focus {
  border-color: #19705F;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(25, 112, 95, 0.1);
}

.clientele-search-unified-input:focus ~ i,
.clientele-search-box-unified:focus-within i {
  color: #19705F;
}

/* Right Column: Filter Tabs */
.clientele-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  border-top: none;
  padding-top: 0;
  margin: 0;
}

.filter-tab-btn {
  height: 40px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
}

.filter-tab-btn i {
  font-size: 0.7rem;
  color: #9CA3AF;
  transition: color 0.15s ease;
}

.filter-tab-btn:hover {
  background: #E5E7EB;
  border-color: #D1D5DB;
  color: #111827;
}

.filter-tab-btn:hover i {
  color: #4B5563;
}

/* Active State Design */
.filter-tab-btn.active {
  background: #0D1117;
  border-color: #0D1117;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.filter-tab-btn.active i {
  color: #2DD4BF;
}

.filter-tab-btn .tab-count {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  color: #6B7280;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.filter-tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}




/* ─── Cities Bento Grid (4-col) ──────────────────────────────────────────── */
.clientele-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}

/* ─── Base City Client Card (Redesigned Premium Style) ─────────────────────── */
.city-client-card {
  background: linear-gradient(180deg, #FAFCFB 0%, #FFFFFF 100%);
  border: 1px solid rgba(25, 112, 95, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(25, 112, 95, 0.05);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.city-client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #19705F 0%, #2DD4BF 100%);
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.city-client-card:hover {
  border-color: rgba(25, 112, 95, 0.45);
  box-shadow: 0 10px 30px rgba(25, 112, 95, 0.12);
  transform: translateY(-2px);
}

/* Card header */
.city-card-header {
  background: rgba(248, 250, 252, 0.7);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(25, 112, 95, 0.1);
  flex-shrink: 0;
}

.city-card-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0D1117;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  min-width: 0;
}

.city-card-title i {
  font-size: 0.72rem;
  color: #19705F;
  flex-shrink: 0;
}

.city-count-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #19705F;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(25, 112, 95, 0.25);
}

/* Card body */
.city-card-body {
  padding: 16px 18px 20px;
  flex: 1;
}

.city-client-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.city-client-items-list li {
  font-size: 0.8rem;
  color: #4B5563;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.city-client-items-list li .item-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #19705F;
  opacity: 0.6;
  margin-top: 6px;
  flex-shrink: 0;
  transition: opacity 0.2s, background-color 0.2s;
}

.city-client-card:hover .city-client-items-list li .item-bullet {
  opacity: 1;
}

.city-client-items-list li .client-entry-name {
  font-weight: 500;
  color: #374151;
}

/* Major hub cities → span 2 columns with 2-column list */
.city-client-card.is-major-hub {
  grid-column: span 2;
}

.city-client-card.is-major-hub .city-client-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 7px;
}

/* Inline status badges */
.badge-progress {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  background: #FEF9C3;
  color: #713F12;
  margin-left: 4px;
  vertical-align: middle;
  /* FIX: aligns inline badge to text baseline */
}

.badge-court-count {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 3px;
  background: #DCFCE7;
  color: #14532D;
  margin-left: 4px;
  vertical-align: middle;
  /* FIX: aligns inline badge to text baseline */
}

/* Empty State */
.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 52px 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  display: none;
}

.no-results-msg i {
  font-size: 1.5rem;
  color: #D1D5DB;
  margin-bottom: 10px;
  display: block;
}

.no-results-msg h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: #6B7280;
  margin: 0 0 5px;
}

.no-results-msg p {
  font-size: 0.78rem;
  color: #9CA3AF;
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bento-strip-right {
    flex: 0 0 220px;
  }
}

@media (max-width: 1100px) {

  /* Header: stack vertically */
  .featured-header-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-metrics-strip {
    grid-template-columns: repeat(4, 1fr);
    /* FIX: 1 row of 4 on tablet */
  }

  /* Bento: collapse to 2-column */
  .landmark-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(160px, auto);
  }

  .bento-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(3) {
    grid-column: span 1;
    grid-row: auto;
  }

  .bento-card:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
  }

  .bento-card:nth-child(5) {
    grid-column: span 1;
    grid-row: auto;
  }

  .bento-card:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(7) {
    grid-column: span 1;
    grid-row: auto;
  }

  .bento-card:nth-child(8) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  /* Strip layout adjust */
  .bento-strip-right {
    flex: 0 0 auto;
    padding-left: 16px;
    max-width: 200px;
  }

  /* Cities: 2 columns */
  .clientele-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-client-card.is-major-hub {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .featured-work-section {
    padding: 60px 0 72px;
  }

  /* Header */
  .portfolio-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    /* FIX: 2×2 on mobile */
  }

  /* Bento: single column */
  .landmark-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card:nth-child(n) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  /* Strip: vertical stack */
  .bento-card--strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 24px;
  }

  .bento-strip-left {
    margin-right: 0;
    margin-bottom: 4px;
  }

  .bento-strip-right {
    flex: none;
    max-width: 100%;
    padding-left: 0;
    text-align: left;
  }

  /* Controls: stack vertically */
  .clientele-controls-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* Cities: single column */
  .clientele-cities-grid {
    grid-template-columns: 1fr;
  }

  .city-client-card.is-major-hub {
    grid-column: span 1;
  }

  .city-client-card.is-major-hub .city-client-items-list {
    grid-template-columns: 1fr;
  }
}