:root {
  --bg-light: #fffaf5;
  --bg-soft: #ffe9d6;
  --card-bg: #ffffff;
  --line: rgba(255, 128, 0, 0.18);
  --text: #1c1c1c;
  --muted: #5d5148;
  --primary: #ff8c1a;
  --primary-strong: #ff6a00;
  --accent: #ffb347;
  --shadow: rgba(255, 118, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 140, 26, 0.12), transparent 28%),
    linear-gradient(135deg, var(--bg-light), var(--bg-soft));
  color: var(--text);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.page-shell {
  width: min(92vw, 900px);
  padding: 0;
}

.maintenance-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  border: 1px solid rgba(255, 140, 26, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(58, 39, 18, 0.10), 0 10px 26px rgba(255, 118, 0, 0.08);
  padding: clamp(28px, 4vw, 52px);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.brand-row {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: min(100%, 430px);
  max-width: 70%;
  height: auto;
  image-rendering: auto;
  filter: none;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

.badge {
  display: inline-block;
  background: rgba(255, 140, 26, 0.1);
  color: var(--primary-strong);
  border: 1px solid rgba(255, 140, 26, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 18px auto 14px;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-align: center;
  max-width: 760px;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  letter-spacing: -0.01em;
}

.subtitle-line {
  display: block;
}

.subtitle-line--last {
  white-space: nowrap;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .subtitle-line--last {
    white-space: normal;
  }
}

.cta-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ff9e2f, var(--primary-strong));
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(255, 106, 0, 0.3);
}

.contact-box {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 140, 26, 0.18);
  text-align: center;
}

.contact-box h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf7, #fff);
  border-radius: 16px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.label {
  display: block;
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-item a {
  display: inline-block;
  max-width: 100%;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .maintenance-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .primary-btn {
    width: 100%;
  }
}
