:root{
  --brand:#8f111b;
  --brand-dark:#760c15;
  --cream:#fffdf8;
  --cream-soft:#faf7f0;
  --cream-warm:#fff4df;
  --text:#2d2a28;
  --muted:#6b625c;
  --line:#eadfce;
  --shadow:0 18px 50px rgba(77,39,20,.16);
  --max:1220px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:var(--cream-soft);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.page{
  width:min(calc(100% - 32px), var(--max));
  min-height:calc(100vh - 32px);
  margin:16px auto;
  background:var(--cream);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:28px 38px;
  border-bottom:1px solid rgba(143,17,27,.09);
  background:#fffdf8;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--brand);
  font-weight:850;
  font-size:1.35rem;
  line-height:1.1;
}

.logo svg{
  width:46px;
  height:46px;
  flex:0 0 auto;
}
.maintenance-image {
  width: 160px;
  max-width: 55%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.status{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  color:var(--muted);
  text-align:right;
  line-height:1.25;
}

.status-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--brand);
  display:inline-block;
}

.main{
  flex:1;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 28px 72px;
  overflow:hidden;
  background:
    radial-gradient(circle at 0% 78%, rgba(242,206,142,.42) 0 120px, transparent 122px),
    radial-gradient(circle at 100% 88%, rgba(242,206,142,.35) 0 90px, transparent 92px),
    linear-gradient(135deg, #fffaf2 0%, #fffdf8 70%);
}

.dots-left,
.dots-right{
  position:absolute;
  width:140px;
  height:90px;
  background-image:radial-gradient(var(--brand) 2px, transparent 2.5px);
  background-size:22px 22px;
  opacity:.75;
  pointer-events:none;
}

.dots-left{
  left:68px;
  bottom:105px;
}

.dots-right{
  right:72px;
  bottom:120px;
}

.maintenance-card{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:auto;
}

.tool-icon{
  width:230px;
  height:170px;
  margin:0 auto 22px;
}

.maintenance-card h1{
  margin:0 0 12px;
  color:var(--brand);
  font-family:"Merienda", cursive;
  font-size:clamp(3rem, 7vw, 5.2rem);
  line-height:1;
  letter-spacing:-.05em;
}

.subtitle{
  margin:0;
  font-size:clamp(1.35rem, 2.6vw, 2rem);
  font-weight:800;
  color:#262220;
}

.small-line{
  width:54px;
  height:3px;
  background:var(--brand);
  border-radius:999px;
  margin:22px auto 24px;
}

.text{
  max-width:600px;
  margin:0 auto 24px;
  color:#3d3732;
  font-size:1.08rem;
  font-weight:500;
}

.contact{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 auto 30px;
  color:#38322e;
  font-weight:500;
  flex-wrap:wrap;
}

.contact svg{
  width:22px;
  height:22px;
  color:var(--brand);
}

.contact a{
  color:var(--brand);
  font-weight:800;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:15px 44px;
  border-radius:9px;
  background:var(--brand);
  color:#fff;
  font-weight:850;
  font-size:1.05rem;
  box-shadow:0 12px 24px rgba(143,17,27,.22);
  transition:.2s ease;
}

.button:hover{
  background:var(--brand-dark);
  transform:translateY(-1px);
}

.footer{
  background:linear-gradient(135deg, #fff7ed, #f8ead2);
  text-align:center;
  padding:24px 20px 28px;
  color:#3d3732;
  border-top:1px solid rgba(143,17,27,.08);
}

.heart{
  color:var(--brand);
  font-size:2rem;
  line-height:1;
  margin-bottom:8px;
}

.footer p{
  margin:4px 0;
}

.copyright{
  font-size:.95rem;
  color:#5d554f;
}

@media (max-width:760px){
  .page{
    width:100%;
    min-height:100vh;
    margin:0;
    border-radius:0;
  }

  .header{
    flex-direction:column;
    align-items:flex-start;
    padding:24px 22px;
  }

  .status{
    text-align:left;
  }

  .main{
    padding:56px 22px 64px;
  }

  .tool-icon{
    width:190px;
    height:140px;
  }

  .dots-left,
  .dots-right{
    opacity:.35;
  }

  .dots-left{
    left:20px;
    bottom:85px;
  }

  .dots-right{
    right:18px;
    bottom:95px;
  }

  .button{
    width:100%;
    max-width:340px;
  }
}
