:root {
  --cream: #eee2c8;
  --cream-deep: #e4d4ae;
  --navy: #1e2a44;
  --gold: #b6903f;
  --gold-light: #c9a860;
  --ink: #2a2620;
}

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

html, body {
  height: 100%;
}

body {
  background: radial-gradient(ellipse at 50% 30%, var(--cream) 0%, var(--cream-deep) 100%);
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 6vh 6vw 4vh;
  text-align: center;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 680px;
}

.logo {
  width: min(560px, 88vw);
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 62% 68% at 50% 48%, #000 55%, transparent 92%);
  mask-image: radial-gradient(ellipse 62% 68% at 50% 48%, #000 55%, transparent 92%);
}

.divider {
  margin: 2.75rem 0 2.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider span {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.footer {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
}

@media (max-width: 480px) {
  .hero {
    padding: 8vh 6vw 5vh;
  }
  .divider {
    margin: 2rem 0 1.75rem;
  }
}
