:root {
  color-scheme: light;
  --green: #176c37;
  --green-dark: #0e4624;
  --gold: #d5a33a;
  --ink: #172015;
  --muted: #4e594a;
  --panel: rgba(255, 255, 255, 0.94);
  --line: rgba(23, 108, 55, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eef2e9 url("/assets/background.png") center top / cover fixed no-repeat;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Geneva, Tahoma, Verdana, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(245, 247, 241, 0.94), rgba(245, 247, 241, 0.72) 54%, rgba(245, 247, 241, 0.2)),
    radial-gradient(circle at 78% 20%, rgba(213, 163, 58, 0.16), transparent 34%);
}

a {
  color: var(--green);
}

.site-shell {
  width: min(100%, 1120px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 24px;
  margin: 0 auto;
}

.notice-panel {
  width: min(100%, 620px);
  padding: clamp(28px, 6vw, 56px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 32, 17, 0.18);
}

.logo {
  display: block;
  width: 185px;
  max-width: 72%;
  height: auto;
  margin-bottom: 28px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin: 0 0 18px;
  border: 1px solid rgba(213, 163, 58, 0.48);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 247, 224, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  max-width: 54ch;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-card p,
.contact-card a {
  margin: 0;
}

.contact-label {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-name {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.phone-link {
  width: fit-content;
  color: var(--green-dark);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.phone-link:hover,
.email-link:hover {
  text-decoration: underline;
}

.email-link {
  width: fit-content;
  overflow-wrap: anywhere;
  font-weight: 700;
}

@media (max-width: 700px) {
  html {
    background-attachment: scroll;
  }

  body {
    background:
      linear-gradient(180deg, rgba(245, 247, 241, 0.96), rgba(245, 247, 241, 0.82)),
      url("/assets/background.png") center top / cover no-repeat;
  }

  .site-shell {
    align-items: flex-start;
    padding: 20px;
  }

  .notice-panel {
    padding: 26px;
  }

  .contact-card {
    gap: 8px;
  }

  h1 {
    max-width: 10ch;
  }

  .email-link {
    font-size: 0.94rem;
    line-height: 1.35;
  }
}
