:root {
  --bg: #304d46;
  --text: #e4efeb;
  --text-muted: #a8c4bb;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-faint: rgba(201, 169, 110, 0.25);
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3Oeli4teleVlZWQkJCLi4ubm5unp6edpeli5markup+Li4ueli4=");
  background-repeat: repeat;
  z-index: 9999;
}

.border-frame {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--gold-faint);
  box-shadow:
    inset 0 0 0 6px var(--bg),
    inset 0 0 0 7px var(--gold-faint);
}

.content {
  max-width: 600px;
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 24px rgba(201, 169, 110, 0.12));
}

h1 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text);
  -webkit-text-stroke: 1px var(--text);
}

.tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 3rem;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold-faint);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.15);
  outline: none;
}

.social-links svg {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .border-frame {
    padding: 1.25rem;
  }

  .content {
    padding: 1.5rem 0.5rem;
  }

  .logo {
    width: 140px;
  }

  h1 {
    letter-spacing: 0.15em;
  }
}
