:root {
  --bg-1: #fffaf5;
  --bg-2: #f5efe7;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-2: rgba(255, 255, 255, 0.2);
  --panel-3: rgba(255, 255, 255, 0.28);
  --line: rgba(26, 42, 52, 0.09);
  --ink: #1d2a2f;
  --muted: rgba(29, 42, 47, 0.76);
  --gold: #c7903d;
  --gold-soft: rgba(199, 144, 61, 0.18);
  --brand-primary: #1b7f77;
  --brand-primary-soft: rgba(27, 127, 119, 0.12);
  --shadow: 0 28px 70px rgba(31, 48, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(27, 127, 119, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(199, 144, 61, 0.18), transparent 24%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--ink);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.page-wrap {
  width: min(100%, 980px);
  position: relative;
}

.site-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64));
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 12px 30px rgba(29, 42, 47, 0.06);
  padding: 30px clamp(28px, 4vw, 52px) 20px;
  backdrop-filter: blur(10px);
}

.logo {
  display: block;
  width: min(100%, 440px);
  height: auto;
  filter: brightness(1.1) contrast(1.06);
}

.announcement-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 233, 0.96));
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 22px 22px;
  box-shadow: var(--shadow);
  padding: 52px clamp(24px, 5vw, 76px);
  text-align: center;
}

.panel-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(184, 138, 68, 0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: sweep 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweep {
  0% { transform: translateX(-100%); }
  40%, 70% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 20px;
  padding: 10px 16px;
  border: 1px solid rgba(27, 127, 119, 0.2);
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #2f251f;
}

.message {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 26px auto 0;
  font-size: clamp(1.08rem, 1.6vw, 1.5rem);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 500;
}

.message a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(27, 127, 119, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.message a:hover,
.message a:focus {
  color: #125e5a;
  border-bottom-color: rgba(27, 127, 119, 1);
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 24px;
  }

  .announcement-panel {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  h1 {
    line-height: 0.98;
  }
}
