/* ============================================
   EACUS - Furniture (Preparation) Page Styles
   Used by: furniture.html
   ============================================ */

/* Furniture page uses wider nav gap */
.header-nav {
  gap: 35px;
}

/* Site wrapper for this page uses flex column for full-height layout */
.site-wrapper {
  display: flex;
  flex-direction: column;
}

/* Constraint */
.site-wrapper > section:not(.page-hero),
.site-wrapper > footer {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* Preparation Content */
.prep-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px;
}

.prep-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  color: var(--color-black);
}

.prep-subtitle {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
  color: var(--color-gray-500);
}

.prep-message {
  max-width: 500px;
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 60px;
}

.back-home {
  display: inline-block;
  border: 1px solid var(--color-black);
  padding: 15px 50px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.back-home:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Footer for this page */
.site-footer {
  padding: 50px 40px 35px;
  border-top: 1px solid var(--color-gray-100);
}

.footer-logo img {
  height: 24px;
  width: auto;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 15px;
  }

  .site-title { text-align: center; }

  .header-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 20px 30px;
  }
}
