/* Mobile First */
.stats-strip {
  background: var(--purple-dark);
  padding: 0;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-item:nth-child(even) {
  border-right: none;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4) {
  border-bottom: none;
}

.stat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intro-img-wrap {
  position: relative;
}

.intro-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.intro-badge {
  position: relative;
  bottom: auto;
  right: auto;
  margin-top: 1.5rem;
  background: var(--purple-dark);
  color: var(--white);
  padding: 1.25rem;
  text-align: center;
  width: 100%;
  max-width: 180px;
}

.intro-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.intro-badge .years-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

.services-preview-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

.svc-card {
  background: var(--white);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.svc-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
}

.svc-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.svc-card-cta .btn-primary {
  margin-top: 1rem;
  display: inline-block;
}

.projects-preview-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.proj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,15,71,0.94) 0%, rgba(35,15,71,0.08) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.proj-cat {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.why-strip-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-strip-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-strip-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-grey);
  align-items: start;
}

.wsi-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 2px;
}

.why-strip-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 0.25rem;
}

.why-strip-item p {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 300;
}

.cta-strip {
  background: var(--purple-dark);
  padding: 2.5rem 1.5rem;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

/* Tablet */
@media (min-width: 768px) {
  .stats-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: 1.5rem;
    border-bottom: none;
  }

  .stat-item:nth-child(even) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:last-child {
    border-right: none;
  }

  .intro-grid {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .intro-img-wrap {
    flex: 1;
  }

  .intro-img {
    max-height: 380px;
  }

  .intro-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    margin-top: 0;
    width: auto;
    min-width: 160px;
    padding: 1.5rem;
  }

  .services-preview-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-preview-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-strip-grid {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .why-strip-left {
    flex: 1;
  }

  .why-strip-items {
    flex: 1;
  }

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .stat-item {
    padding: 2rem 2.5rem;
  }

  .intro-img {
    max-height: 500px;
  }

  .services-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proj-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proj-card {
    height: 320px;
  }
}