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

    :root {
      --gold: #c8a84b;
      --dark-gold: #8a6e2a;
      --bg: #0a0804;
      --text: #e8dcc8;
      --muted: #7a6a50;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'EB Garamond', serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 100;
      opacity: 0.4;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: fadeIn 2s ease forwards;
    }
	
	.hero img {
      align-items: center;
      animation: fadeIn 2s ease forwards;
	}

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(4rem, 14vw, 11rem);
      font-weight: 900;
      line-height: 0.88;
      text-align: center;
      color: var(--text);
      letter-spacing: -0.01em;
      text-shadow:
        0 0 80px rgba(200, 168, 75, 0.25),
        0 4px 40px rgba(0,0,0,0.9);
    }
    @keyframes breathe {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(1.012); }
    }

    .verse-section {
      max-width: 680px;
      margin: 0 auto 6rem;
      padding: 0 2rem;
      animation: fadeIn 2.5s ease 0.4s both;
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 3.5rem;
    }
    .divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,168,75,0.4), transparent);
    }
    .divider-gem {
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
    }

    .verse-lines {
      list-style: none;
      display: flex;
      flex-direction: column;
    }

    .verse-lines li {
      font-size: clamp(1.05rem, 2.4vw, 1.22rem);
      line-height: 1.85;
      color: var(--text);
      transition: color 0.3s;
    }

    .verse-lines li:hover { color: #fff; }

    .verse-lines li.highlight {
      color: var(--gold);
      font-style: italic;
    }

    .source {
      margin-top: 2.8rem;
      text-align: right;
      color: var(--muted);
      font-style: italic;
      letter-spacing: 0.08em;
    }

    .source span { color: var(--gold); font-style: normal; }

    footer {
      text-align: center;
      padding: 2rem;
      border-top: 1px solid rgba(200,168,75,0.1);
      color: var(--muted);
      font-family: 'Cinzel Decorative', serif;
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
    }
    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0.5;
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:0.7} }
    .scroll-hint span {
      font-family: 'IM Fell English SC', serif;
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      color: var(--gold);
    }
    .scroll-hint svg { color: var(--gold); }