:root {
  color-scheme: light;
  --ink: #14231d;
  --muted: #5b6b63;
  --green: #176348;
  --green-dark: #0f3d30;
  --gold: #c79a42;
  --paper: #fffdf7;
  --mist: #eef5ef;
  --line: rgba(20, 35, 29, 0.12);
  --shadow: 0 24px 70px rgba(15, 61, 48, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 154, 66, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--paper) 0%, var(--mist) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(23, 99, 72, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(23, 99, 72, 0.05) 87.5%, rgba(23, 99, 72, 0.05)),
    linear-gradient(150deg, rgba(23, 99, 72, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(23, 99, 72, 0.05) 87.5%, rgba(23, 99, 72, 0.05));
  background-size: 72px 126px;
  opacity: 0.45;
}

.site-shell {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.status-pill {
  border: 1px solid rgba(199, 154, 66, 0.42);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 132px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  color: var(--green-dark);
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.96;
}

.blessing {
  margin: 28px 0 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.notice {
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-size: 0.92rem;
  font-weight: 800;
}

.notice h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.65rem;
}

.notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 28px, 620px);
    padding-bottom: 32px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 54px 0 20px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.8rem);
  }

  .notice {
    padding: 26px;
  }
}
