    /* ================= ROOT VARIABLES ================= */
    :root {
      /* — Palette — */
      --background: hsl(36, 33%, 97%);
      --foreground: hsl(20, 20%, 15%);

      --gold: hsl(43, 72%, 45%);
      --gold-light: hsl(43, 60%, 65%);
      --gold-glow: hsl(43, 80%, 55%);
      --maroon: hsl(350, 55%, 35%);
      --cream: hsl(36, 33%, 97%);
      --temple-dark: hsl(20, 25%, 18%);

      /* — Section backgrounds — */
      --section-bg-warm: linear-gradient(180deg, hsl(39, 70%, 93%) 0%, hsl(39, 50%, 96%) 100%);
      --section-bg-warm-reverse: linear-gradient(0deg, hsl(39, 70%, 93%) 0%, hsl(39, 50%, 96%) 100%);

      /* — Typography — */
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Lora', serif;

      /* — Borders & Radii — */
      --border-accent: 1px solid var(--gold-light);
      --radius-lg: 1rem;
      --radius-xl: 1.25rem;
    }

    /* ================= BASE ================= */
    body {
      margin: 0;
      font-family: var(--font-body);
      background: var(--background);
      color: var(--foreground);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
    }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      color: var(--cream);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay-dark {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.3);
    }

    .overlay-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        transparent,
        rgba(0,0,0,0.7)
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }

    /* ================= TEXT STYLES ================= */
    .gold-text {
      background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
      );
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .text-uppercase{
        letter-spacing: .3em; 
        font-size: .875rem
    }
    .big-name {
      font-size: 3rem;
      line-height: 1;
      letter-spacing: .025em;
      font-weight: 300;
    }

    .temple-divider {
      height: 1px;
      width: 120px;
      margin: 25px auto;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        var(--gold),
        rgba(212, 175, 55, 0.3),
        transparent
      );
    }

    /* ================= SCROLL ================= */
    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      font-size: 12px;
      color: var(--cream);
      opacity: 0.7;
    }

    /* ================= LETTER ================= */
    .letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(20px);
    }