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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #2d5f3f;
  text-decoration: none;
}

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

.nav-link {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #2d5f3f;
}

.hero {
  background: linear-gradient(135deg, #2d5f3f 0%, #1a3d28 100%);
  color: #fff;
  padding: 120px 24px 100px;
  text-align: center;
}

.hero-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}

.portfolio-intro {
  padding: 80px 24px 40px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-desc {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.portfolio-grid {
  padding: 40px 24px 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.portfolio-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.card-content {
  padding: 24px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.card-meta {
  font-size: 13px;
  color: #2d5f3f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.cta-section {
  background: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.cta-desc {
  font-size: 17px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: #2d5f3f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1a3d28;
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #2d5f3f;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid #2d5f3f;
}

.btn-secondary:hover {
  background: #2d5f3f;
  color: #fff;
}

.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
}

.footer-text {
  font-size: 14px;
}

.process-hero {
  background: #fff;
  padding: 100px 24px 60px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.process-steps {
  padding: 80px 24px;
}

.step {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  color: #e5e5e5;
  min-width: 100px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

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

.process-principles {
  background: #f5f5f5;
  padding: 80px 24px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.principle {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
}

.principle h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2d5f3f;
}

.principle p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.contact-hero {
  padding: 80px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2d5f3f;
}

.detail-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d5f3f;
}

.btn-full {
  width: 100%;
}

.form-note {
  font-size: 13px;
  color: #999;
  margin-top: 16px;
  text-align: center;
}

.contact-cta {
  padding: 80px 24px;
  background: #fafafa;
}

.cta-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box-content {
  padding: 40px;
}

.cta-box-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.cta-box-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .step {
    flex-direction: column;
    gap: 20px;
  }
  .step-number {
    font-size: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 14px;
  }
}