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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #fffbf7;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff5ed 0%, #fffbf7 100%);
  padding: 2rem;
}

.nav {
  padding: 1rem 2rem;
}

.brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e8a87c;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 100px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: #3d3d3d;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: #6b6b6b;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #e8a87c;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d4956a;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  width: 400px;
  height: 400px;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: rgba(232, 168, 124, 0.2);
  top: 50px;
  left: 50px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: rgba(232, 168, 124, 0.3);
  top: 150px;
  left: 100px;
}

.circle-3 {
  width: 100px;
  height: 100px;
  background: rgba(232, 168, 124, 0.5);
  top: 200px;
  left: 150px;
}

/* Services */
.services {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
  color: #3d3d3d;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
}

.service-number {
  font-size: 2rem;
  font-weight: 200;
  color: #e8a87c;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #3d3d3d;
}

.service-content p {
  color: #6b6b6b;
}

/* Testimonial */
.testimonial {
  padding: 6rem 2rem;
  background: #e8a87c;
  text-align: center;
}

.testimonial-content {
  max-width: 600px;
  margin: 0 auto;
}

.quote {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  background: #fffbf7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info p {
  font-size: 0.875rem;
  color: #6b6b6b;
  text-align: right;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    width: 250px;
    height: 250px;
    margin-top: 3rem;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
    top: 25px;
    left: 25px;
  }
  .circle-2 {
    width: 130px;
    height: 130px;
    top: 80px;
    left: 60px;
  }
  .circle-3 {
    width: 60px;
    height: 60px;
    top: 115px;
    left: 95px;
  }

  .service-item {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-info p {
    text-align: center;
  }
}
