:root {
  --bg: #e8edfb;
  --navy: #00096b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
  overflow: hidden;
}

.water-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.announce.water-warp {
  filter: url(#water-warp);
}

.eyebrow {
  font-family: 'berthold-baskerville-pro', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--navy);
}

.wordmark {
  margin-top: 8px;
}

.wordmark-logo {
  display: block;
  margin: 0 auto;
  height: clamp(3.2rem, 10vw, 5.75rem);
  width: auto;
}

.announce {
  margin-bottom: 96px;
}

.info-block {
  margin-top: 56px;
}

.info-block + .info-block {
  margin-top: 64px;
}

.info-block .eyebrow {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.visit-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.visit-link:hover,
.visit-link:focus-visible {
  opacity: 0.7;
}

.brand-name {
  margin-top: 14px;
}

.brand-logo {
  display: block;
  margin: 0 auto;
  height: clamp(1.15rem, 3vw, 1.45rem);
  width: auto;
}

.address {
  font-family: 'baskerville-bt', 'berthold-baskerville-pro', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  color: var(--navy);
  margin-top: 8px;
}

.address a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.address a:hover,
.address a:focus-visible {
  opacity: 0.7;
}
