/* Base Typography & Reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Source Sans Pro', sans-serif;
    color: #F5F3EB; /* Warm Off‑White as default text color */
}

/* Hero Background */
.landing-page-bg {
    background-color: #2C2F21; /* Clive Green */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Centered Layout */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    gap: 4rem; /* 64px, matches desktop outer margin */
}

/* Decorative Divider */
.decorative-line {
    width: 90%;
    max-width: 1000px;
    height: 1px;
    background-color: rgba(126,124,122,0.3); /* Slate Grey @30% */
}

/* Content Wrapper */
.content-container {
    width: 90%;
    max-width: 1000px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
}

/* Wordmark (CLIVE) */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;      /* H1 size per guide */
    font-weight: 400;     /* Regular */
    letter-spacing: 0.15em;
    color: #F5F3EB;       /* Warm Off‑White */
    margin: 0;
}

/* Vertical Accent Beam */
.vertical-beam {
    width: 1px;
    height: 4rem;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(126,124,122,0.3),
        transparent
    );
    flex-shrink: 0;
}

/* Tagline */
.subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;      /* Body size per guide */
    font-weight: 400;
    line-height: 1.5;
    color: #F5F3EB;
    white-space: nowrap;
    margin: 0;
}

/* Status / Caption Text */
.status-container {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
}

.status-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;      /* Caption size per guide */
    font-weight: 400;
    line-height: 1.4;
    color: rgba(126,124,122,0.7); /* Slate Grey @70% */
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-container {
        gap: 2rem;        /* 32px on mobile */
    }

    .title {
        font-size: 32px;  /* H2 size per guide */
    }

    .vertical-beam {
        height: 3rem;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .subtitle {
        white-space: normal;
    }
}
