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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fef9f5;
  color: #2e2a28;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

/* Navigation */
header {
  background-color: #ffffffdd;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border-bottom: 1px solid #f0e4dc;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  color: #7c4a3a;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #4a3b35;
  transition: color 0.2s;
  font-size: 1rem;
}

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

/* Hero */
.hero {
  background: linear-gradient(105deg, #f3ede8 0%, #fae6db 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #5c3e2f;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.25rem;
  color: #5e4b3e;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background-color: #9b6a53;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn:hover {
  background-color: #7c4a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Section */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #5c3e2f;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #e2bcab;
  margin: 0.7rem auto 0;
  border-radius: 4px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  border: 1px solid #f3e3db;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(92,62,47,0.2);
  border-color: #e7cfc3;
}

.service-icon {
  font-size: 2.5rem;
  color: #b25e3c;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #4c3527;
}

.service-card p {
  color: #6b5b52;
  font-size: 0.95rem;
}

.click-hint {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #b88469;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* About Text */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  background: #fffaf7;
  padding: 2rem;
  border-radius: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Contact Form */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background: white;
  border-radius: 48px;
  padding: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-details i {
  width: 28px;
  color: #b25e3c;
}

form {
  flex: 1;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e6d5cc;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  background: #fefcfb;
  transition: 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #b25e3c;
  box-shadow: 0 0 0 3px rgba(178,94,60,0.1);
}

button[type="submit"] {
  background-color: #7c4a3a;
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 40px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.modal-content {
  background: #fffaf5;
  max-width: 520px;
  width: 90%;
  border-radius: 48px;
  padding: 2rem 1.8rem;
  position: relative;
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.25s ease-out;
  border: 1px solid #f0dfd4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  color: #9b6a53;
  transition: 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: #5c3e2f;
}

.modal h3 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: #4a3326;
}

.modal-desc {
  margin: 1.2rem 0;
  line-height: 1.5;
  color: #4e3f38;
}

.modal-detail-list {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.2rem;
}

.modal-detail-list li {
  margin: 0.4rem 0;
  color: #6b4d3c;
}

.modal-btn {
  background-color: #b25e3c;
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: 0.2s;
}

.modal-btn:hover {
  background-color: #7c4a3a;
}

/* Footer */
footer {
  background: #2e2a28;
  color: #e2cfc4;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 780px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .contact-wrapper {
    padding: 1.5rem;
  }
  .modal-content {
    padding: 1.8rem;
  }
}