:root {
  color-scheme: light;
  --ink: #1d2422;
  --muted: #5c6664;
  --paper: rgba(250, 248, 244, 0.76);
  --line: rgba(255, 255, 255, 0.52);
  --shadow: rgba(29, 36, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #d8ddd9;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: start center;
  overflow: hidden;
  padding: clamp(64px, 10vh, 122px) 24px 32px;
  background:
    linear-gradient(180deg, rgba(244, 242, 237, 0.6) 0%, rgba(244, 242, 237, 0.22) 48%, rgba(244, 242, 237, 0.05) 100%),
    url("bg.png") center center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.28), transparent 38%);
  pointer-events: none;
}

.announcement {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(28px, 4.5vw, 52px);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(16px);
}

.announcement::before,
.announcement::after {
  position: absolute;
  left: 50%;
  width: min(144px, 34%);
  height: 1px;
  content: "";
  background: rgba(29, 36, 34, 0.34);
  transform: translateX(-50%);
}

.announcement::before {
  top: 22px;
}

.announcement::after {
  bottom: 22px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: clamp(0.72rem, 1.4vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

h1 span {
  display: block;
}

.site-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-link:hover,
.site-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 72px;
    background-position: center bottom;
  }

  .announcement {
    padding: 34px 22px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 3.7rem);
    letter-spacing: 0.02em;
  }

  .site-link {
    letter-spacing: 0.04em;
  }
}
