*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --text: #faf8f5;
  --text-muted: rgba(250, 248, 245, 0.82);
  --accent: #d4c4a8;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #1a1816;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100dvh;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 16, 14, 0.92) 0%,
    rgba(18, 16, 14, 0.55) 38%,
    rgba(18, 16, 14, 0.15) 68%,
    rgba(18, 16, 14, 0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
  animation: fade-in 1.2s ease-out both;
}

.title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.venue {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.location {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.location::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.25rem;
  opacity: 0.75;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__label {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--text);
  border-bottom-color: var(--accent);
  outline: none;
}

.photo-credit {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(250, 248, 245, 0.45);
  background: #12100e;
}

.photo-credit a {
  color: rgba(212, 196, 168, 0.7);
  text-decoration: none;
}

.photo-credit a:hover,
.photo-credit a:focus-visible {
  color: var(--accent);
  outline: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content {
    animation: none;
  }
}

@media (min-width: 768px) {
  .hero__image {
    object-position: center 20%;
  }

  .hero__content {
    padding-bottom: 4.5rem;
  }
}
