/* ── Architecture-inspired shared patterns ─────────────── */

.arch-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ── Design Approach ───────────────────────────────────── */
.approach-section {
  padding: 5rem 0;
  background: var(--ink-elevated);
  border-top: 1px solid var(--line);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.approach-card {
  padding: 2rem 1.75rem;
  background: var(--ink-elevated);
  border-top: 1px solid var(--line-strong);
}

.approach-card__index {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--fog-faint);
}

.approach-card__title {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--fog);
}

.approach-card__text {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fog-muted);
}

/* ── Featured Projects (editorial) ─────────────────────── */
.featured-section {
  background: var(--ink-elevated);
}

.featured-project {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

@media (min-width: 1024px) {
  .featured-project {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 520px;
  }

  .featured-project--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .featured-project--reverse .featured-project__media {
    order: 2;
  }

  .featured-project--reverse .featured-project__content {
    order: 1;
  }
}

.featured-project__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--ink-elevated);
}

.featured-project__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-project:hover .featured-project__image {
  transform: scale(1.03);
}

.featured-project__meta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.78), transparent);
}

.featured-project__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .featured-project__content {
    padding: 4rem 5rem;
  }
}

.featured-project__title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--fog);
}

.featured-project__narrative {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fog-muted);
}

.featured-project__link {
  margin-top: 2rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-project__link:hover {
  color: var(--brass-dark);
}

/* ── Recognition strip ─────────────────────────────────── */
.recognition-section {
  padding: 3.5rem 0;
  background: var(--ink-soft);
  color: var(--fog);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition-section .arch-eyebrow {
  color: rgba(212, 184, 150, 0.9);
}

.recognition-lead {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .recognition-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recognition-item {
  text-align: center;
}

.recognition-item__title {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brass-light);
  line-height: 1.3;
}

.recognition-item__text {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* legacy aliases */
.recognition-item__value {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brass-light);
  line-height: 1.3;
}

.recognition-item__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Project Index + Filters ───────────────────────────── */
.project-index {
  padding: 5rem 0;
  background: var(--ink-elevated);
}

.project-filters {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--ink-elevated);
  border: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .project-filters {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem 3rem;
  }
}

.project-filters__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.project-filters__label {
  width: 100%;
  margin-bottom: 0.25rem;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fog-faint);
}

@media (min-width: 1024px) {
  .project-filters__label {
    width: auto;
    margin-bottom: 0;
    margin-right: 0.75rem;
  }
}

.project-filters__btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-muted);
  background: transparent;
  border: 1px solid rgba(243, 235, 224, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-filters__btn:hover,
.project-filters__btn.is-active {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.project-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .project-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: var(--ink-elevated);
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--line);
}

.project-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card__image {
  transform: scale(1.03);
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.project-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog-muted);
  background: rgba(34, 30, 25, 0.9);
  border: 1px solid var(--line);
}

.featured-project__meta-bar .project-tag {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.project-card__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--fog);
}

.project-card__story {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fog-muted);
}

.project-card.is-filtered-out {
  opacity: 0;
}
