body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fffaf8;
    color: #1a1a1a;
    text-align: center;
    padding: 80px 20px;
    line-height: 1.8;
    margin: 0;
    position: relative;
}

/* Lattice SVG Pattern */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50L50 0L100 50L50 100L0 50Z M20 50L50 20L80 50L50 80L20 50Z' fill='none' stroke='%23D4AF37' stroke-opacity='0.04' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: -1;
}

.lang-switcher {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}
.lang-switcher a {
    color: #1a1a1a;
    text-decoration: none;
    margin-left: 15px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.lang-switcher a:hover {
    border-color: #D4AF37;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0 0 15px;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
}

.coming {
    font-family: 'EB Garamond', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: #555;
}

.email {
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s;
}
.email:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}