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

:root {
  --primary-color: #f5f5f5;
  --secondary-color: #fafafa;
  --accent-color: #8b9e97;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e8e8e8;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

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

/* Navigation */
.navbar {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(250, 250, 250, 0.60) 100%),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: 56px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #7a8b86;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(139, 158, 151, 0.3);
}

/* Services Section */
.services {
  padding: 80px 20px;
  background-color: white;
}

.services h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-color);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  border-color: var(--accent-color);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 500;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Gallery Section */
.gallery {
  padding: 80px 20px;
  background-color: var(--secondary-color);
}

.gallery h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-color);
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: white;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(139, 158, 151, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}

.contact h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 300;
}

.contact > .container > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 14px;
  background-color: var(--primary-color);
  color: var(--text-color);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 158, 151, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background-color: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: white;
    gap: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 100vh;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
  }

  .nav-links a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
  }

  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .services h2,
  .gallery h2,
  .contact h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .service-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .nav-links {
    gap: 15px;
    font-size: 11px;
  }

  .logo {
    font-size: 18px;
  }

  .services h2,
  .gallery h2,
  .contact h2 {
    font-size: 24px;
  }

  .service-icon svg {
    width: 16px;
    height: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}