* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  line-height: 1.6;
  color: #1f2937;
  background: url('../assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: 4rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.8);
  padding: 1rem 1.25rem;
  border-radius: 16px;
}

.logo {
  width: clamp(96px, 20vw, 140px);
  height: auto;
}

.title h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.title .owner, .title .city {
  color: #374151;
  font-size: .98rem;
}

.construction {
  margin-top: .5rem;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.construction h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: .5rem;
}

.construction p {
  max-width: 52ch;
  margin: 0.5rem auto 1.25rem auto;
  color: #374151;
}

.cta {
  display: inline-block;
  text-decoration: none;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  background: #111827;
  color: white;
  transition: transform .06s ease, box-shadow .2s ease;
}

.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.services {
  display: grid;
  place-items: center;
}

.services ul {
  list-style: none;
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  width: 100%;
}

.services li {
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: .85rem 1rem;
  text-align: center;
}

.footer {
  text-align: center;
  color: #374151;
  font-size: .95rem;
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  padding: .75rem;
}

@media (prefers-color-scheme: dark) {
  body { color: #e5e7eb; }
  .brand, .construction, .services li, .footer { background: rgba(0,0,0,0.65); color: #e5e7eb; }
  .title .owner, .title .city, .construction p, .footer { color: #d1d5db; }
  .cta { background: #e5e7eb; color: #111827; }
}
