.projects-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 108px) 0 76px;
}

.projects-hero-copy {
  min-width: 0;
}

.projects-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.projects-hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.projects-hero-actions {
  margin-top: 32px;
}

.projects-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.projects-hero-points span {
  padding: 8px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.projects-hero-gallery {
  position: relative;
  min-height: 610px;
}

.projects-hero-image {
  position: absolute;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.projects-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-hero-image--main {
  top: 52px;
  bottom: 0;
  left: 0;
  width: 68%;
  box-shadow: var(--shadow);
}

.projects-hero-image--main img {
  object-position: 48% center;
}

.projects-hero-image--main::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(12, 14, 10, 0.64));
  pointer-events: none;
}

.projects-hero-image--main figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.projects-hero-image--top {
  top: 0;
  right: 0;
  width: 40%;
  height: 43%;
  transform: rotate(2deg);
}

.projects-hero-image--top img {
  object-position: center 36%;
}

.projects-hero-image--bottom {
  right: 5%;
  bottom: 34px;
  width: 38%;
  height: 42%;
  transform: rotate(-2deg);
}

.projects-hero-image--bottom img {
  object-position: center 58%;
}

.projects-intro {
  padding-top: 54px;
}

.projects-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.projects-section-heading h2,
.projects-section-heading p:last-child {
  margin-bottom: 0;
}

.projects-section-heading > p {
  max-width: 560px;
  justify-self: end;
}

.project-world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-world {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-world:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.project-world > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-world:hover > img {
  transform: scale(1.035);
}

.project-world--bruder > img {
  object-position: center 45%;
}

.project-world--fire > img {
  object-position: center 35%;
}

.project-world--deko > img {
  object-position: center 55%;
}

.project-world-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.04) 18%, rgba(8, 10, 7, 0.9) 88%);
}

.project-world-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.project-world-number,
.project-world-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.project-world-number {
  min-width: 44px;
  margin-bottom: 10px;
}

.project-world-label {
  margin-bottom: 16px;
}

.project-world-content strong {
  max-width: 350px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.06;
}

.project-world-text {
  max-width: 390px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-world-link {
  margin-top: 20px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.projects-process-section {
  padding-top: 64px;
}

.projects-process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 92px);
  padding: clamp(34px, 5vw, 60px);
  background: var(--olive-dark);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.projects-process-copy h2,
.projects-process-copy p,
.projects-process-copy .text-link {
  color: var(--on-strong);
}

.projects-process-copy .eyebrow {
  color: var(--gold);
}

.projects-process-copy p {
  max-width: 520px;
  opacity: 0.78;
}

.projects-process-copy .text-link {
  display: inline-block;
  margin-top: 8px;
}

.projects-process-grid {
  display: grid;
  gap: 0;
}

.projects-process-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.projects-process-grid article:last-child {
  border-bottom: 0;
}

.projects-process-grid article > span {
  color: var(--gold);
  font-weight: 800;
}

.projects-process-grid h3 {
  margin-bottom: 6px;
  color: var(--on-strong);
}

.projects-process-grid p {
  margin-bottom: 0;
  color: var(--on-strong);
  opacity: 0.7;
}

.projects-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
  padding-top: 76px;
}

.projects-feature-media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.projects-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.projects-feature-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  background: rgba(17, 19, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.projects-feature-copy {
  max-width: 540px;
}

.projects-feature-copy p:not(.eyebrow) {
  font-size: 1.02rem;
}

.projects-feature-copy .btn {
  margin-top: 12px;
}

.projects-final-section {
  padding-top: 64px;
  padding-bottom: 104px;
}

.projects-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(145deg, var(--surface), var(--surface-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.projects-final-cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.projects-final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.projects-final-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 230px;
}

@media (max-width: 1020px) {
  .projects-hero {
    grid-template-columns: 1fr;
  }

  .projects-hero-gallery {
    min-height: 590px;
  }

  .projects-hero-image--main {
    width: 70%;
  }

  .project-world-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-world:last-child {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .projects-process-shell,
  .projects-feature-section {
    grid-template-columns: 1fr;
  }

  .projects-feature-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .projects-hero {
    width: min(calc(100% - 28px), var(--content-width));
    padding-top: 56px;
    padding-bottom: 52px;
  }

  .projects-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .projects-hero-gallery {
    min-height: 500px;
  }

  .projects-hero-image--main {
    top: 34px;
    width: 72%;
  }

  .projects-hero-image--top {
    width: 42%;
    height: 38%;
  }

  .projects-hero-image--bottom {
    right: 2%;
    bottom: 22px;
    width: 40%;
    height: 38%;
  }

  .projects-section-heading {
    grid-template-columns: 1fr;
  }

  .projects-section-heading > p {
    justify-self: start;
  }

  .project-world-grid {
    grid-template-columns: 1fr;
  }

  .project-world,
  .project-world:last-child {
    grid-column: auto;
    min-height: 500px;
  }

  .projects-final-cta {
    grid-template-columns: 1fr;
  }

  .projects-final-actions {
    justify-items: start;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .projects-hero-gallery {
    min-height: 420px;
  }

  .projects-hero-image--main {
    top: 26px;
    width: 76%;
  }

  .projects-hero-image--top {
    width: 40%;
    height: 34%;
  }

  .projects-hero-image--bottom {
    width: 42%;
    height: 34%;
  }

  .projects-process-shell {
    padding: 28px 22px;
  }

  .projects-process-grid article {
    grid-template-columns: 42px 1fr;
  }

  .projects-feature-media,
  .projects-feature-media img {
    min-height: 390px;
  }

  .project-world,
  .project-world:last-child {
    min-height: 460px;
  }

  .project-world-content {
    padding: 24px;
  }

  .projects-final-cta {
    padding: 28px 22px;
  }

  .projects-final-actions,
  .projects-final-actions .btn {
    width: 100%;
  }
}
