body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

/* === SERVICES SECTION === */
.services-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.services-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.services-section h2 span {
  font-style: italic;
  font-weight: 400;
}

.services-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 25px;
  justify-items: center;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  max-width: 340px;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 20px 18px 25px;
}

.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-body h3 span {
  font-style: italic;
  font-weight: 400;
}

.subtitle {
  font-weight: 500;
  color: #444;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 15px;
}

button {
  background: #000;
  color: #fff;
  border: none;
  padding: 9px 17px;
  border-radius: 25px;
  font-size: 12.8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #333;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 180px;
  }

  .service-body {
    padding: 18px;
  }
}

/* === OUR PROMISE SECTION === */
.promise-section {
  text-align: center;
  padding: 0px 20px;
  background-color: #fff;
}

.load-more-btn {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.promise-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.promise-section h2 span {
  font-style: italic;
  font-weight: 400;
}

.promise-section p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 50px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
  justify-items: center;
}

.promise-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 25px 20px;
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 330px;
  text-align: left;
}

.promise-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.promise-card.highlight {
  border-color: #e0d100;
}

.promise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.promise-card p {
  font-size: 13.8px;
  color: #666;
  line-height: 1.55;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .promise-card {
    padding: 20px 15px;
  }
}


/* === PHILOSOPHY SECTION === */
.philosophy-section {
  text-align: center;
  background-color: #fafafa;
  padding: 100px 20px;
  max-width: 850px;
  margin: 0 auto;
  color: #333;
}

.philosophy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size:50px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.philosophy-section h2 span {
  font-weight: 400;
  font-style: italic;
  margin-right: 6px;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #555;
  margin-bottom: 25px;
}

.philosophy-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #444;
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto;
  text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 70px 15px;
  }

  .philosophy-section h2 {
    font-size: 24px;
  }

  .quote {
    font-size: 15.5px;
  }

  .philosophy-text {
    font-size: 13.8px;
    line-height: 1.8;
  }
}

/* PROFESSIONAL FADE-IN ANIMATIONS - ADD TO <head> */
.fade-in-element,
[class*="card"],
.hero-content,
.story-text,
.join-content,
.promise-card,
.service-body,
.project-card,
.furniture-card,
.team-card,
.contact-info,
.contact-form {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-element.fade-in-visible,
[class*="card"].fade-in-visible,
.hero-content.fade-in-visible,
.story-text.fade-in-visible,
.join-content.fade-in-visible,
.promise-card.fade-in-visible,
.service-body.fade-in-visible,
.project-card.fade-in-visible,
.furniture-card.fade-in-visible,
.team-card.fade-in-visible,
.contact-info.fade-in-visible,
.contact-form.fade-in-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* STAGGER DELAYS FOR GRIDS (Auto-applied by JS) */
.fade-in-grid > *:nth-child(1) { transition-delay: 0.1s; }
.fade-in-grid > *:nth-child(2) { transition-delay: 0.2s; }
.fade-in-grid > *:nth-child(3) { transition-delay: 0.3s; }
.fade-in-grid > *:nth-child(4) { transition-delay: 0.4s; }
.fade-in-grid > *:nth-child(5) { transition-delay: 0.5s; }
.fade-in-grid > *:nth-child(6) { transition-delay: 0.6s; }
.fade-in-grid > *:nth-child(7) { transition-delay: 0.7s; }
.fade-in-grid > *:nth-child(8) { transition-delay: 0.8s; }
.fade-in-grid > *:nth-child(9) { transition-delay: 0.9s; }

/* ABOVE-THE-FOLD INSTANT ANIMATION */
.hero,
.portfolio-header,
.services-section h2,
.philosophy-section h2 {
  opacity: 1 !important;
  transform: none !important;
}

/* REDUCED MOTION SUPPORT (WCAG AAA) */
@media (prefers-reduced-motion: reduce) {
  .fade-in-element,
  [class*="card"],
  .hero-content,
  .story-text,
  .join-content,
  .promise-card,
  .service-body,
  .project-card,
  .furniture-card,
  .team-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}