/* HOME HERO */
.hero {
  position: relative;
  min-height: clamp(420px, 58vw, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--tap-green);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,31,26,.72) 0%, rgba(15,31,26,.38) 34%, rgba(15,31,26,.05) 70%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 32px 140px;
  color: white;
}

.hero-title {
  margin: 0;
  max-width: 520px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.02em;
}

.hero .gold-rule {
  width: 70px;
  height: 1px;
  margin: 28px 0 22px;
  background: var(--tap-gold);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .02em;
}

/* PROJECTS / HOME TEASER */
.projects-section {
  background: var(--tap-white);
  padding: 76px 32px 84px;
}

.section-head {
  max-width: var(--max-width);
  margin: 0 auto 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.section-label {
  margin: 0;
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--tap-gold);
  text-transform: uppercase;
  font-weight: 400;
}

.all-link,
.project-link,
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--tap-black);
}

.all-link::after,
.project-link::after,
.detail-link::after {
  content: "\2192";
  color: var(--tap-gold);
  font-size: 20px;
  line-height: 1;
  transition: transform .25s var(--ease);
}

.all-link:hover::after,
.project-link:hover::after,
.detail-link:hover::after {
  transform: translateX(3px);
}

.projects-teaser {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 54px;
  align-items: start;
}

.project-teaser--large .project-image {
  aspect-ratio: 16 / 8.75;
}

.project-teaser-group {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding-top: 120px;
}

.project-teaser {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #ece9e3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.project-teaser:hover img {
  transform: scale(1.03);
}

.project-teaser:not(.project-teaser--large) .project-image {
  aspect-ratio: 4 / 3;
}

.project-number {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tap-gold);
  margin-bottom: 14px;
}

.project-number::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--tap-gold);
}

.project-teaser h3 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: .96;
  margin: 0 0 12px;
  color: var(--tap-green);
}

.project-type {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--tap-black);
  opacity: .75;
}

.project-desc {
  max-width: 420px;
  line-height: 1.7;
  color: #3f4541;
  margin: 0 0 22px;
}

/* ABOUT */
.about-section {
  background: var(--tap-cream);
  padding: 76px 32px;
}

.about-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 820px) minmax(320px, 420px);
  gap: clamp(56px, 6vw, 88px);
  align-items: center;
}

.vertical-rule,
.about-logo {
  display: none;
}

.portrait {
  aspect-ratio: 4 / 3;
  background: #ddd;
  overflow: hidden;
  width: 100%;
  max-width: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0%);
}

.about-label {
  margin: 0 0 16px;
  color: var(--tap-gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.about-title {
  margin: 0 0 20px;
  max-width: 560px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--tap-green);
}

.about-copy {
  max-width: 560px;
  margin: 0 0 22px;
  color: #3f4541;
}

/* RESPONSIVE TABLET */
@media (max-width: 980px) {
  .projects-teaser {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .project-teaser-group {
    padding-top: 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

/* RESPONSIVE SMARTPHONE */
@media (max-width: 700px) {
  .hero .gold-rule {
    width: 48px;
  }

  .hero img {
    object-position: 72% center;
  }

  .hero-title {
    max-width: 320px;
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-top: 14px;
  }

  .hero {
    min-height: 520px;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(15,31,26,.72),
      rgba(15,31,26,.24)
    );
  }

  .hero-content {
    padding: 0 28px 90px;
  }

  .projects-section {
    padding: 56px 24px 60px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-teaser {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .project-teaser-group {
    gap: 44px;
    padding-top: 0;
  }

  .project-teaser h3 {
    font-size: 30px;
  }

  .about-section {
    padding: 56px 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .portrait {
    max-width: none;
    width: 100%;
  }
}