:root {
  --surface: #f5f2ec;
  --panel: rgba(250, 248, 244, 0.9);
  --panel-stroke: rgba(255, 255, 255, 0.5);
  --text: #1f2526;
  --muted: #5f6a6c;
  --accent: #2f555a;
  --button: rgba(255, 255, 255, 0.78);
  --button-stroke: rgba(47, 85, 90, 0.14);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(23, 31, 34, 0.3), rgba(23, 31, 34, 0.55)),
    url("background.png") center / cover no-repeat fixed;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.card {
  width: min(100%, 31rem);
  padding: 1.6rem;
  border: 1px solid var(--panel-stroke);
  border-radius: 1.5rem;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand-block {
  text-align: center;
}

.logo {
  display: block;
  width: auto;
  max-width: min(11rem, 70%);
  height: auto;
  max-height: 6rem;
  margin: 0 auto;
  object-fit: contain;
}

.eyebrow {
  margin: 1rem 0 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

h1 {
  margin: 0.45rem 0 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.9rem);
  line-height: 1;
  color: var(--text);
}

.tagline {
  margin: 0.7rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.description {
  margin: 0.9rem auto 0;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.link-button {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--button-stroke);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--text);
  background: var(--button);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.link-label {
  font-size: 1rem;
  font-weight: 700;
}

.link-copy {
  font-size: 0.88rem;
  color: var(--muted);
}

.location-block {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 85, 90, 0.08);
  text-align: center;
}

.location-title {
  margin: 0 0 0.25rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.location-block p:last-child {
  margin: 0;
  font-weight: 600;
}

@media (max-width: 540px) {
  .page-shell {
    padding: 1rem 0.8rem;
  }

  .card {
    padding: 1.1rem;
    border-radius: 1.25rem;
  }

  .logo {
    max-width: min(9rem, 72%);
    max-height: 5rem;
  }

  .description {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
