:root {
  /* Colors */
  --bg-color: #E6E2D8;
  --text-primary: #4A4643;
  --text-secondary: #7A7571;
  --accent-color: #C86B5E;
  --accent-hover: #b35f53;
  
  /* Neumorphic Shadows */
  --shadow-light: #ffffff;
  --shadow-dark: #c4c0b8;
  --neu-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
  --neu-shadow-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  --neu-shadow-inset: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
  --neu-shadow-inset-sm: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  padding: 2rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(230, 226, 216, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  box-shadow: var(--neu-shadow-inset-sm);
  color: var(--accent-color);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-toggle span:first-child { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:last-child { top: 22px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  background-color: var(--bg-color);
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--neu-shadow);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: var(--neu-shadow-sm);
  transform: translateY(2px);
}

.btn:active {
  box-shadow: var(--neu-shadow-inset);
  transform: translateY(4px);
}

.btn-primary {
  color: #fff;
  background-color: var(--accent-color);
  box-shadow: 6px 6px 12px rgba(200, 107, 94, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  box-shadow: 4px 4px 8px rgba(200, 107, 94, 0.3), -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.btn-primary:active {
  box-shadow: inset 4px 4px 8px rgba(179, 95, 83, 0.5), inset -4px -4px 8px rgba(220, 118, 104, 0.5);
}

/* Neumorphic Card */
.neu-card {
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--neu-shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.neu-card:hover {
  transform: translateY(-5px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* Featured Work / Portfolio Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--neu-shadow);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(230, 226, 216, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--bg-color);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  box-shadow: var(--neu-shadow);
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-close:active {
  box-shadow: var(--neu-shadow-inset);
}

/* Services */
.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-color);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(196, 192, 184, 0.5);
}

.service-item:last-child {
  border-bottom: none;
}

.service-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.service-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 80%;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent-color);
  background: var(--bg-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--neu-shadow-inset-sm);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 0;
  margin-top: 5rem;
  box-shadow: var(--neu-shadow-inset);
}

footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-links li {
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.active span:first-child {
    transform: translateY(11px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:last-child {
    transform: translateY(-11px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .service-info p {
    max-width: 100%;
  }
}
