:root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --bg-color: #aa2520; /* User's exact brand red */
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Centered Layout container */
.main-container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    text-align: center;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Brand Header Section - Matches Image Exactly */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: #ffffff;
}

.brand-tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    color: #ffffff;
    opacity: 0.95;
    text-transform: uppercase;
}

/* Content wrapper below the brand banner */
.content-wrapper {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.5rem;
}

.message-card {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 580px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    color: #ffffff;
}

/* Striking Clean Black BG Badge requested by user */
.highlight-badge {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 0.15rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sub-paragraph {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

/* Clean Editorial Contact Section */
.contact-section {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connect-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.email-link {
    font-size: clamp(1.15rem, 3vw, 1.3rem);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    padding-bottom: 2px;
}

.email-link:hover {
    opacity: 0.8;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive spacing and typography */
@media (max-width: 480px) {
    .main-container {
        gap: 2.5rem;
    }
    .content-wrapper {
        padding-top: 2rem;
    }
    .highlight-badge {
        display: inline;
        padding: 0.15rem 0.4rem;
    }
    .brand-title {
        font-size: 1.8rem;
    }
    .brand-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.25rem;
    }
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .sub-paragraph {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .email-link {
        font-size: 1rem;
    }
}

/* Moving Grain Overlay */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
    opacity: 0.05; /* Subtle and high-end texture */
    pointer-events: none;
    z-index: 9999;
    animation: grain-animation 8s steps(10) infinite;
}

@keyframes grain-animation {
    0%, 100% { transform:translate(0, 0); }
    10% { transform:translate(-5%, -10%); }
    20% { transform:translate(-15%, 5%); }
    30% { transform:translate(7%, -25%); }
    40% { transform:translate(-5%, 25%); }
    50% { transform:translate(-15%, 10%); }
    60% { transform:translate(15%, 0%); }
    70% { transform:translate(0%, 15%); }
    80% { transform:translate(3%, 35%); }
    90% { transform:translate(-10%, 10%); }
}

