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

:root {
  --bg-deep: #060606;
  --bg-surface: #0f0f0f;
  --bg-elevated: #161616;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dim: rgba(201, 169, 98, 0.15);
  --crimson: #7a1f3d;
  --crimson-glow: rgba(122, 31, 61, 0.25);
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.4);
  --border: rgba(201, 169, 98, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Background */

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--gold {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: var(--gold-dim);
}

.bg-glow--crimson {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: var(--crimson-glow);
}

/* Header */

.header {
  position: relative;
  z-index: 10;
  padding: 1.5rem 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.logo-cross {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.hero__content {
  animation: fadeUp 1s ease-out both;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 0;
}

/* Verse */

.hero__verse {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 420px;
}

.verse-cross {
  flex-shrink: 0;
  width: 12px;
  height: 16px;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 0.25rem;
}

.hero__verse blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hero__verse cite {
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Visual */

.hero__visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero__frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.hero__halo {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, var(--gold-dim) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__frame::before {
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__frame::after {
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
}

/* Footer */

.footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer__social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem 1.5rem 3rem;
    gap: 2rem;
  }

  .hero__subtitle,
  .hero__verse {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__verse {
    justify-content: center;
    text-align: left;
  }

  .hero__visual {
    order: -1;
  }

  .hero__frame {
    max-width: 280px;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
