/* Philip Cullen Limited — initial holding page */

:root {
    --background: #f5f7f8;
    --surface: #ffffff;
    --text: #17202a;
    --muted: #53616e;
    --accent: #155e75;
    --accent-soft: #e8f3f6;
    --border: #dbe3e7;
    --max-width: 72rem;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(21, 94, 117, 0.06), transparent 40%),
        var(--background);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

main {
    flex: 1;
    display: flex;
}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 6.5rem);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

h1 span {
    color: var(--accent);
}

.intro {
    max-width: 46rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.status {
    display: inline-block;
    margin: 2.25rem 0 0;
    padding: 0.55rem 0.85rem;
    border: 1px solid #c9e1e8;
    border-radius: 0.4rem;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

footer {
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.8rem;
}

.footer-content p {
    margin: 0;
}

.footer-content strong {
    color: var(--text);
    font-weight: 650;
}

.copyright {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .hero {
        padding: 4rem 1.25rem;
    }

    .footer-content {
        padding: 1.25rem;
        display: block;
    }

    .copyright {
        margin-top: 1rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}
