:root {
  --background: #f7f2ea;
  --ink: #1f2523;
  --muted: #5d6964;
  --surface: #fffaf3;
  --line: rgba(31, 37, 35, 0.14);
  --accent: #0f766e;
  --accent-deep: #0b4f4a;
  --warn: #d45a32;
  --shadow: 0 28px 80px rgba(31, 37, 35, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(115deg, rgba(15, 118, 110, 0.08), transparent 42%),
    linear-gradient(295deg, rgba(212, 90, 50, 0.11), transparent 48%),
    var(--background);
}

.notice {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
}

.hero {
  display: grid;
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - clamp(48px, 10vw, 144px)));
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  inset: 10% 2% 4% 8%;
  z-index: -2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(31, 37, 35, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 37, 35, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  transform: rotate(-4deg);
}

.calendar {
  position: relative;
  display: grid;
  width: min(330px, 74vw);
  aspect-ratio: 0.86;
  overflow: hidden;
  border: 1px solid rgba(31, 37, 35, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  place-items: center;
  transform: translateY(10px);
  animation: settle 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.calendar__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: var(--accent);
}

.calendar__month {
  position: absolute;
  top: 8%;
  color: white;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
}

.calendar__day {
  margin-top: 19%;
  color: var(--accent-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 18vw, 12rem);
  line-height: 0.86;
}

.calendar::after {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 36%;
  height: 4px;
  border-radius: 999px;
  background: var(--warn);
  content: "";
}

.pulse {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 4.8s ease-in-out infinite;
}

.pulse--one {
  width: 290px;
  height: 290px;
}

.pulse--two {
  width: 390px;
  height: 390px;
  animation-delay: 1s;
}

.hero__content {
  max-width: 640px;
  animation: reveal 680ms ease-out 120ms both;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8.7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.lead {
  max-width: 620px;
  margin: clamp(24px, 4vw, 36px) 0 0;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 650;
  line-height: 1.18;
}

.support {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.62;
}

.status {
  display: inline-flex;
  min-width: min(100%, 420px);
  margin-top: clamp(28px, 5vw, 48px);
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
  gap: 18px;
}

.status__label {
  color: var(--muted);
  font-size: 0.92rem;
}

.status strong {
  color: var(--accent-deep);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.84);
  }

  42% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .notice {
    align-items: start;
    padding: 24px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__visual {
    min-height: 280px;
    order: -1;
  }

  .hero__visual::before {
    inset: 14% 0 8%;
    background-size: 34px 34px;
  }

  .calendar {
    width: min(230px, 68vw);
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .status {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
