/* PROJECTS 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 */
	.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 {
	  display: inline-flex;
	  align-items: center;
	  gap: 10px;
	  font-size: 12px;
	  letter-spacing: .12em;
	  text-transform: uppercase;
	  color: var(--tap-black);
	}

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

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

	.project-list {
	  max-width: var(--max-width);
	  margin: 0 auto;
	  display: grid;
	  gap: 34px;
	}

	.project-card {
	  display: grid;
	  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
	  gap: clamp(70px, 9vw, 140px);
	  align-items: center;
	  padding-bottom: 56px;
	  margin-bottom: 12px;
	  border-bottom: 1px solid rgba(200,167,106,.42);
	}

	.project-card:last-child {
	  border-bottom: 0;
	}

	.project-image {
	  position: relative;
	  overflow: hidden;
	  background: var(--tap-cream);
	  aspect-ratio: 16 / 9;
	}

	.project-image img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  transition: transform .6s var(--ease),
				  filter .6s var(--ease);
	}

	.project-image::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(15,31,26,0);
	  transition: background .6s var(--ease);
	  pointer-events: none;
	}

	.project-card:hover .project-image::after {
	  background: rgba(15,31,26,0.08);
	}

	.project-card:hover .project-image img {
	  transform: scale(1.035);
	  filter: saturate(1.02)
			  contrast(1.04)
			  brightness(0.98);
	}

	.project-index {
	  display: flex;
	  align-items: center;
	  gap: 20px;
	  color: var(--tap-gold);
	  font-size: 15px;
	  letter-spacing: .12em;
	  margin-bottom: 18px;
	}

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

	.project-title {
	  margin: 0 0 4px;
	  font-family: Cambria, Georgia, serif;
	  font-size: clamp(28px, 3vw, 42px);
	  line-height: 1.08;
	  font-weight: 400;
	  color: var(--tap-green);
	}

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

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

	.detail-link {
	  display: inline-flex;
	  align-items: center;
	  gap: 10px;
	  font-size: 12px;
	  letter-spacing: .13em;
	  text-transform: uppercase;
	}

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

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

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

	.about-inner {
	  max-width: var(--max-width);
	  margin: 0 auto;
	  display: grid;
	  grid-template-columns: 230px minmax(0, 1fr) 1px 180px;
	  gap: clamp(36px, 6vw, 76px);
	  align-items: center;
	}

	.portrait {
	  aspect-ratio: 4 / 5;
	  background: #ddd;
	  overflow: hidden;
	}

	.portrait img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  filter: none;
	}

	.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;
	}

	.vertical-rule {
	  height: 180px;
	  background: var(--tap-gold);
	  justify-self: center;
	}

	.about-logo img {
	  width: 150px;
	  margin: 0 auto;
	}

	/* RESPONSIVE TABLET */
	@media (max-width: 980px) {

	  .project-card {
		grid-template-columns: 1fr;
		gap: 24px;
	  }

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

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

	/* 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;
	  }

	  .project-title {
		font-size: 30px;
	  }

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

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

	  .portrait {
		max-width: 220px;
	  }
	}
