@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --ink: #35373b;
  --muted: #6a6c70;
  --paper: #fffdf9;
  --green: #67c62e;
  --yellow: #ffc928;
  --orange: #ff671f;
  --red: #e72420;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 5% 8%, rgb(103 198 46 / 14%), transparent 25rem),
    radial-gradient(circle at 94% 92%, rgb(255 201 40 / 15%), transparent 24rem),
    #f6f5f0;
}

.maintenance {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.card {
  position: relative;
  width: min(100%, 760px);
  overflow: hidden;
  background: var(--paper);
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4.5rem rgb(33 41 26 / 13%);
}

.accent-line {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: .5rem;
  background: linear-gradient(90deg, var(--green) 0 40%, var(--yellow) 40% 60%, var(--orange) 60% 80%, var(--red) 80%);
}

.brand {
  display: grid;
  min-height: 175px;
  padding: 1.4rem 2.5rem 1.1rem;
  place-items: center;
  background: linear-gradient(165deg, #fff 0%, #f5f6f2 100%);
  border-bottom: 1px solid #e8e8e2;
}

.brand img {
  display: block;
  width: min(100%, 440px);
  height: auto;
  mix-blend-mode: multiply;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 4.5rem 2.75rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: #4e9b23;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: .94;
  text-transform: uppercase;
}

.intro {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
}

.notice {
  display: flex;
  gap: .7rem;
  align-items: center;
  width: fit-content;
  margin-top: 2rem;
  align-self: center;
  padding: .72rem 1rem;
  color: #3e7830;
  background: #eef8e9;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
}

.notice p { margin: 0; }

.notice-icon {
  display: grid;
  width: 1.4rem;
  height: 1.4rem;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  place-items: center;
}

footer {
  padding: 1.55rem 4.5rem 1.7rem;
  background: #f1f2ed;
  text-align: center;
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .6rem;
  align-items: baseline;
  justify-content: center;
  color: var(--muted);
  font-size: .84rem;
  font-style: normal;
}

address strong { color: var(--ink); }
address span::before, address a::before { content: "·"; margin-right: .6rem; color: #a0a19d; }
address a { color: inherit; text-decoration: none; }
address a:hover { color: #387c1a; text-decoration: underline; }

@media (max-width: 620px) {
  .maintenance { padding: 1rem; }
  .card { border-radius: 1rem; }
  .brand { min-height: 135px; padding: 1rem 1.5rem; }
  .content { padding: 2.6rem 1.65rem 2.2rem; }
  footer { padding: 1.3rem 1.65rem; }
  address { display: grid; gap: .35rem; justify-content: initial; }
  address span::before, address a::before { content: none; }
}
