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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f1ee;
  color: #1f1a17;
  line-height: 1.6;
}

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

img {
  width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  padding: 42px 74px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  font-size: 0.98rem;
  color: #5a514c;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #1f1a17;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 10px;
  align-items: center;
  flex: 1;
}

.hero-text {
  max-width: 720px;
  margin-right: -28px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5.35rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  font-weight: 700;
}

.subtitle {
  max-width: 760px;
  font-size: 1.08rem;
  color: #5f5550;
  margin-bottom: 30px;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid #1f1a17;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: 0.25s ease;
  background: transparent;
}

.btn:hover {
  background: #1f1a17;
  color: #f6f1ee;
}

.hero-image {
  max-width: 640px;
  justify-self: start;
  transform: translateX(-6px);
}

.hero-image img {
  height: 690px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 96px 74px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.section-label {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a7f7f;
  padding-top: 6px;
}

.section-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.45rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-content p {
  max-width: 860px;
  font-size: 1.04rem;
  color: #574f49;
  margin-bottom: 16px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.project-card {
  background: #fffaf7;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.08);
  box-shadow: 0 10px 30px rgba(31, 26, 23, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(31, 26, 23, 0.10);
}

.project-image-wrap {
  padding: 18px 18px 0;
}

.project-image-wrap img {
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  background: #f2ece7;
}

.project-info {
  padding: 22px 22px 24px;
}

.project-info.centered {
  text-align: center;
}

.project-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1f1a17;
  margin: 0;
}

.contact-list {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-list a {
  font-size: 1rem;
  color: #1f1a17;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contact-list a:hover {
  border-color: #1f1a17;
}

.footer {
  padding: 28px 74px 40px;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.footer p {
  color: #8f7a78;
  font-size: 0.9rem;
}