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

:root {
    --primary: #1a1a1a;
    --accent: #c9a961;
    --bg: #fafaf8;
}

body {
    font-family: 'Crimson Pro', serif;
    background: var(--bg);
    color: var(--primary);
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
    transform: rotate(-15deg);
    animation: float 20s ease-in-out infinite;
}

.geometric-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.02) 0%, transparent 70%);
    transform: rotate(12deg);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-30px); }
}

.content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeIn 1.2s ease-out;
}

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

.accent-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 2.5rem;
    animation: expandLine 0.8s ease-out 0.3s backwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeIn 1.2s ease-out 0.2s backwards;
}

.ampersand {
    font-weight: 400;
    color: var(--accent);
    font-style: italic;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out 0.4s backwards;
}

.contact {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    animation: fadeIn 1.2s ease-out 0.6s backwards;
}

.contact a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    padding-bottom: 2px;
}

.contact a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.ornament {
    width: 40px;
    height: 40px;
    margin: 3rem auto 0;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer {
    margin-top: 2rem;
    animation: fadeIn 1.2s ease-out 0.8s backwards;
}

.footer a {
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
}

/* Privacy Policy Page Styles */
.policy-container {
    align-items: flex-start;
    padding: 3rem 2rem;
}

.policy-content {
    max-width: 800px;
    text-align: left;
}

.policy-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
}

.policy-content .accent-line {
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
}

.effective-date {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.policy-text {
    line-height: 1.8;
}

.policy-text p {
    margin-bottom: 1.25rem;
}

.policy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-text a:hover {
    border-color: var(--accent);
}

.contact-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(201, 169, 97, 0.05);
    border-left: 3px solid var(--accent);
}

.policy-content .ornament {
    display: block;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .subtitle {
        letter-spacing: 0.06em;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-text h2 {
        font-size: 1.25rem;
    }
}