/* Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2C5F2D;
  --secondary: #97BC62;
  --dark: #1A1A1A;
  --light: #F8F6F3;
  --gray: #6B6B6B;
  --white: #FFFFFF;
  --accent: #D4A574;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(248, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-icon {
  font-size: 1.8rem;
}

.menu-links {
  display: flex;
  gap: 2.5rem;
}

.menu-item {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.menu-item:hover {
  color: var(--primary);
}

.menu-item.featured {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.menu-item.featured:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: 0.3s;
}

/* Hero Section */
.intro-section {
  margin-top: 80px;
  padding: 4rem 2rem 6rem;
  background: linear-gradient(135deg, var(--light) 0%, rgba(151, 188, 98, 0.1) 100%);
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-label {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0;
  color: var(--dark);
}

.highlight {
  color: var(--primary);
  position: relative;
}

.intro-description {
  font-size: 1.2rem;
  color: var(--gray);
  margin: 1.5rem 0 2rem;
}

.intro-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.action-primary,
.action-secondary {
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.action-primary {
  background: var(--primary);
  color: var(--white);
}

.action-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.action-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.action-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.intro-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat span {
  color: var(--gray);
  font-size: 0.9rem;
}

.intro-visual {
  position: relative;
  height: 500px;
}

.visual-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: 20%;
  left: 20%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  right: 30%;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 2rem;
  background: var(--white);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 350px;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.vertical {
  grid-row: span 2;
  height: auto;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

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

.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--light) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.center {
  text-align: center;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--primary);
}

.service-box p {
  color: var(--gray);
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
}

.badge-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  display: block;
}

.badge-text {
  font-size: 0.8rem;
}

.about-lead {
  font-size: 1.3rem;
  color: var(--gray);
  margin: 1rem 0 2rem;
  line-height: 1.8;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  background: var(--secondary);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Materials Section */
.materials {
  padding: 3rem 2rem;
  background: var(--light);
  text-align: center;
}

.materials-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.wood-types {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.wood-types img {
  border-radius: 10px;
  transition: transform 0.3s;
}

.wood-types img:hover {
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info p {
  color: var(--gray);
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.detail p {
  margin: 0;
  color: var(--dark);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.submit-btn {
  grid-column: 1 / -1;
  padding: 1.2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.form-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #999;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a,
.footer-social a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
}

/* Responsive */
@media (max-width: 968px) {
  .intro-content,
  .about-container,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links,
  .footer-social {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .menu-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .menu-links.active {
    display: flex;
  }
  
  .menu-trigger {
    display: flex;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    justify-content: space-around;
  }
}