* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FEF9F0;
  color: #2C2A29;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.96);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #C97E3A, #9B5E2C);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #3E3A35;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #C97E3A;
}

.menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #5C4B34;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: auto;
    background: white;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 2rem;
    border-radius: 0 24px 24px 0;
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
    transition: left 0.3s ease;
    z-index: 99;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background-color: #C97E3A;
  color: white;
  border: 1px solid #C97E3A;
}

.btn-primary:hover {
  background-color: #B0682C;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(201,126,58,0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid #C97E3A;
  color: #C97E3A;
}

.btn-outline:hover {
  background: #C97E3A10;
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(115deg, #FEF3E4 0%, #FFF9F2 100%);
  padding: 4rem 1rem;
  border-bottom: 1px solid #FFEBD6;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1.2;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2F2A25;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #5E5549;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  background: #EEDDCB;
  border-radius: 32px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300" fill="%23DDC9B0"><rect width="400" height="300" fill="%23F3E5D6" rx="28"/><circle cx="200" cy="130" r="50" fill="%23D9B68C"/><rect x="160" y="180" width="80" height="70" fill="%23C9A97C"/><path d="M120 250 L280 250 L260 280 L140 280 Z" fill="%23B5864A"/><circle cx="170" cy="210" r="8" fill="white"/><circle cx="230" cy="210" r="8" fill="white"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-image {
    width: 100%;
    min-height: 200px;
  }
}

.intro {
  padding: 4rem 0;
  background: white;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2F2A25;
}

.intro p {
  font-size: 1.05rem;
  color: #5C5348;
  max-width: 800px;
  margin-bottom: 0.5rem;
}

.services {
  padding: 4rem 0;
  background: #FEF9F0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #2F2A25;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  flex: 1;
  min-width: 250px;
  transition: 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  border: 1px solid #F2E3D4;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  color: #C97E3A;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card p {
  color: #5C5348;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 0.8rem;
}

.feature-list li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-list i {
  color: #C97E3A;
  width: 1.2rem;
}

.contact {
  padding: 4rem 0;
  background: white;
  border-top: 1px solid #F0E4D6;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.contact-details p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.contact-details i {
  width: 28px;
  color: #C97E3A;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1;
  background: #FEF9F0;
  padding: 1.8rem;
  border-radius: 32px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #EADCCE;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  background: white;
}

.contact-form button {
  background: #C97E3A;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #B0682C;
}

footer {
  background: #F3ECE3;
  padding: 2rem 1rem;
  text-align: center;
  color: #6C6052;
  font-size: 0.85rem;
  border-top: 1px solid #E8DBCF;
}

section {
  scroll-margin-top: 80px;
}

.nav-links a.active {
  color: #C97E3A;
  font-weight: 600;
  border-bottom: 2px solid #C97E3A;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .nav-links a.active {
    border-bottom: none;
    background: #FEF0E2;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin: -0.3rem 0;
  }
}

.small-note {
  font-size: 0.7rem;
}