:root {
  color-scheme: light;
  --background: #ffffff;
  --ink: #141414;
  --muted: #6a625b;
  --rule: #ded8d0;
  --accent: #9b2d26;
  --accent-dark: #5a241d;
  --teal: #0f7770;
  --announcement-space: clamp(18px, 3vw, 30px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.splash {
  display: grid;
  min-height: 100svh;
  padding: clamp(18px, 4vw, 44px) 20px;
  place-items: center;
}

.content {
  display: grid;
  justify-items: center;
  width: min(100%, 820px);
  text-align: center;
}

.logo-frame {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1.52;
  height: clamp(225px, 43vw, 408px);
  overflow: hidden;
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.announcement {
  display: grid;
  gap: 6px;
  margin: var(--announcement-space) 0;
}

h1 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.announcement p {
  margin: 0;
  color: var(--teal);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  font-style: normal;
}

.detail {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.36;
  text-wrap: balance;
  transition: color 160ms ease;
}

.detail:hover,
.detail:focus-visible {
  color: var(--accent);
}

.instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram:hover,
.instagram:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), transparent 60%);
  outline-offset: 4px;
}

@media (max-width: 460px) {
  .splash {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  h1 {
    max-width: 11ch;
  }

  .logo-frame {
    width: calc(100vw - 44px);
  }

  .detail {
    overflow-wrap: anywhere;
  }
}
