:root {
  --gold: #d4a94f;
  --soft: #aaaaaa;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

.hero {
  position: relative;
  flex: 1;
  min-height: 0;
  background: url('/img/lauraback.jpg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}

.hero-title {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  white-space: nowrap;
}

.glass {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: clamp(18px, 3vh, 50px) clamp(18px, 4vw, 48px);
  max-width: 820px;
  width: min(90%, 820px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vh, 28px);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vh, 2rem);
  color: var(--gold);
  flex-shrink: 0;
}

p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.78rem, 1.6vh, 1.05rem);
  line-height: 1.75;
  color: #eaeaea;
  flex-shrink: 1;
}

.back-home {
  flex-shrink: 0;
}

.back-home a {
  display: inline-block;
  padding: clamp(9px, 1.5vh, 14px) clamp(20px, 3vw, 34px);
  background: var(--gold);
  color: black;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.8rem, 1.4vh, 0.95rem);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: transform 0.25s;
  white-space: nowrap;
}

.back-home a:hover {
  transform: translateY(-3px);
}

footer {
  background: #0a0a0a;
  color: var(--soft);
  text-align: center;
  padding: 13px 0;
  font-size: 0.75rem;
  flex-shrink: 0;
}

footer a {
  color: var(--soft);
  text-decoration: none;
  margin: 0 6px;
}

footer a:hover {
  color: var(--gold);
}
