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

html, body {
    width: 100%;
    min-height: 100%;
    background: #000;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #f5f0e6;
    line-height: 1.8;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 30px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 60px;
    opacity: 0.9;
}

p {
    font-size: 1.15rem;
    margin-bottom: 2em;
    opacity: 0.8;
    font-weight: 300;
}

.quote {
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid rgba(245, 240, 230, 0.2);
    margin: 40px 0;
}

a {
    color: #f5f0e6;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 230, 0.3);
    transition: border-color 0.3s ease;
}

a:hover {
    border-color: rgba(245, 240, 230, 0.8);
}

.back-link {
    display: inline-block;
    margin-top: 60px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 1;
}

.contact {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 240, 230, 0.1);
}

.contact h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    margin-bottom: 20px;
    opacity: 0.6;
}
