* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Regular.woff2") format("woff2"), url("assets/fonts/Nunito-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Bold.woff2") format("woff2"), url("assets/fonts/Nunito-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Light.woff2") format("woff2"), url("assets/fonts/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Regular.woff2") format("woff2"), url("assets/fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  position: relative;
  min-height: 100vh;
  background: #023941;
  color: #f9f8dc;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #00a676;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #f9f8dc;
}

.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 4rem;
}
.header .logo img {
  height: 84px;
  width: auto;
  display: block;
}
.header .badge {
  flex-shrink: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00a676;
  background: rgba(0, 166, 118, 0.16);
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

.notice {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
.notice .eyebrow {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #00a676;
  margin-bottom: 0.9rem;
}
.notice .title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.notice .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(249, 248, 220, 0.78);
}
.notice .lead p {
  margin-bottom: 1.25rem;
}
.notice .lead .info-line {
  color: #f9f8dc;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #023941;
  background: #00a676;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  color: #023941;
  background: #00c48c;
  transform: translateY(-2px);
}

.note {
  margin: 3rem 0;
  padding: 2rem 2.25rem;
  background: #f9f8dc;
  border-radius: 14px;
  color: #023941;
}
.note .note-title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #023941;
}
.note .note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem;
}
.note .note-item {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(2, 57, 65, 0.85);
}
.note .note-item .note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}
.note .note-item.is-open .note-icon {
  color: #00a676;
  background: rgba(0, 166, 118, 0.16);
}
.note .note-item.is-closed .note-icon {
  color: rgba(2, 57, 65, 0.55);
  background: rgba(2, 57, 65, 0.08);
}
.note .note-item.is-soon .note-icon {
  color: #00a676;
  background: rgba(0, 166, 118, 0.16);
}

.closing {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: #f9f8dc;
}

.footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(249, 248, 220, 0.14);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(249, 248, 220, 0.78);
}
.footer .footer-name {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #f9f8dc;
}
.footer .footer-site {
  margin-top: 0.15rem;
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
  }
  .notice {
    padding: 1.5rem 1.5rem 3rem;
  }
  .note {
    padding: 1.5rem 1.5rem;
  }
  .note .note-grid {
    gap: 1.5rem;
  }
  .footer {
    padding: 2rem 1.5rem;
  }
}
