/* Non-critical styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

.subtitle {
  font-family: "Inter", serif;
  font-size: 1.2rem;
  color: var(--fern-green);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-style: italic;
  margin-top: 0;
}

.construction-message {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(163, 177, 138, 0.1), rgba(88, 129, 87, 0.1));
  border-radius: 15px;
  border: 1px solid rgba(163, 177, 138, 0.2);
  position: relative;
  overflow: hidden;
}

.image-gallery {
  display: flex;
  gap: 1.5rem;
  margin: 2.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-item {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(52, 78, 65, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.9s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(52, 78, 65, 0.3);
}

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

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

.gallery-item .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(52, 78, 65, 0.9), transparent);
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.image-overlay span {
  color: var(--timberwolf);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-section {
  margin-top: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(163, 177, 138, 0.15), rgba(88, 129, 87, 0.15));
  border-radius: 12px;
  color: var(--fern-green);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(163, 177, 138, 0.3);
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(163, 177, 138, 0.25), rgba(88, 129, 87, 0.25));
  transform: translateY(-3px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(52, 78, 65, 0.15);
  border-color: rgba(163, 177, 138, 0.5);
}

.signature {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--brunswick-green);
  letter-spacing: 0.3px;
  font-weight: 300;
}

.signature a {
  color: var(--fern-green);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 18px;
}

.signature a::after {
  content: "→";
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.signature a:hover {
  color: var(--hunter-green);
}

.signature a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .gallery-item {
    width: 140px;
    height: 140px;
  }
  
  .contact-item {
    padding: 0.8rem 1rem;
  }
}

/* Rest of your existing styles... */
/* Copy all the styles from the original file except those in the critical CSS */ 