@charset "UTF-8";
/* Sisters Moda — maintenance page
   Brand: Arsenal (display) + Jost (text); warm terracotta accent over lakeside editorial. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  background-color: #1a1210;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #fff;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("./wp-content/uploads/2026/07/2026_shooting-Sister-Moda_giugno-28.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
}
.bg .bg-scrim {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(26, 18, 16, 0.35) 0%, rgba(26, 18, 16, 0.5) 55%, rgba(26, 18, 16, 0.72) 100%);
}

.maintenance-container {
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.logo {
  width: 230px;
  max-width: 60vw;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.message {
  max-width: 620px;
  width: 100%;
}
.message .eyebrow {
  display: inline-block;
  max-width: 100%;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d9b8a4;
  margin-bottom: 22px;
}
.message .title {
  font-family: "Arsenal", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.message p {
  margin-top: 22px;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.message p strong {
  font-weight: 500;
  color: #fff;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: inline-block;
  padding: 14px 34px;
  background-color: #b5623f;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.cta-button:hover {
  background-color: #975234;
  transform: translateY(-2px);
}

.cta-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.cta-link:hover {
  color: #d9b8a4;
  border-color: #d9b8a4;
}

.foot {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.foot .dot {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 600px) {
  .maintenance-container {
    gap: 32px;
    padding: 40px 20px;
  }
  .message .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }
  .message .title {
    font-size: 2.1rem;
  }
  .message p {
    font-size: 1rem;
  }
  .cta-button {
    width: 100%;
    max-width: 320px;
  }
  .contact {
    width: 100%;
    gap: 16px;
  }
}

/*# sourceMappingURL=maintenance-style.css.map */
