* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 32px 8%;
  background: #efe7dc;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

nav h2 {
  font-size: 1.2rem;
}

nav a {
  margin-left: 24px;
  font-weight: 600;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a5a44;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 24px;
}

.tagline {
  font-size: 1.35rem;
  max-width: 650px;
  margin-bottom: 32px;
}

.button {
  display: inline-block;
  background: #1f2933;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.portrait {
  background: #d8c3a5;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
}

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

.section {
  padding: 90px 8%;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section > p {
  max-width: 760px;
  font-size: 1.15rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: white;
}

.card,
.project {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3,
.project h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.project {
  margin-bottom: 24px;
}

.contact {
  background: #1f2933;
  color: white;
}

.contact a {
  text-decoration: underline;
}

@media (max-width: 800px) {
  nav {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero-content,
  .cards {
    grid-template-columns: 1fr;
  }

  .portrait {
    min-height: 320px;
  }
}
