/* Plucky Newsroom — public landing page styles.
 *
 * Page-specific chrome only (hero, anchor sections, footer). Navbar and button
 * styling come from the shared design system (plucky_newsroom_design.css); the
 * --plucky-* tokens and brand fonts it loads are reused here.
 */

/* Smooth in-page scrolling for the navbar's section anchors. scroll-padding-top
   clears the 75px fixed navbar so anchored sections are not hidden beneath it. */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* --- Hero ----------------------------------------------------------------- */
.pw-landing-hero {
    background-color: var(--plucky-paper);
    border-bottom: 1px solid var(--plucky-border-soft);
    padding: 4rem 0 4.5rem;
}
.pw-landing-hero__eyebrow {
    font-family: "Crimson Pro", serif;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    color: var(--plucky-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pw-landing-hero__title {
    font-family: "Crimson Pro", serif;
    font-weight: 700;
    color: var(--plucky-secondary);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.1;
    max-width: 18ch;
}
.pw-landing-hero__subtitle {
    color: var(--plucky-text-muted);
    font-size: 1.2rem;
    max-width: 56ch;
    margin-top: 1.25rem;
}
.pw-landing-hero__cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* --- Anchor sections ------------------------------------------------------ */
.pw-landing-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--plucky-border-soft);
}
.pw-landing-section__title {
    font-family: "Crimson Pro", serif;
    font-weight: 700;
    color: var(--plucky-secondary);
    margin-bottom: 0.75rem;
}
.pw-landing-section__copy {
    color: var(--plucky-text-muted);
    max-width: 60ch;
    margin-bottom: 0;
}

/* --- Footer --------------------------------------------------------------- */
/* Mirrors the Plucky for Business public footer (.biz-footer): a centered
   1180px wrap, a 1.2fr / 1fr / 1fr column grid, uppercase column headers, and
   a divided bottom bar. Newsroom-namespaced so it stays self-contained. */
.pw-landing-footer {
    background: var(--plucky-secondary);
    color: rgba(255, 255, 255, 0.78);
    padding: 44px clamp(18px, 4vw, 56px) 28px;
    font-family: var(--font-sans);
}
.pw-landing-footer__wrap {
    max-width: 1180px;
    margin: 0 auto;
}
.pw-landing-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
}
.pw-landing-footer h6 {
    font-family: var(--font-sans);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.pw-landing-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-size: 0.92rem;
}
.pw-landing-footer a:hover {
    color: var(--plucky-tertiary);
    text-decoration: none;
}
/* Brand lockup — favicon mark on a translucent tile plus the wordmark text.
   Higher specificity than `.pw-landing-footer a` so the flex layout wins. */
.pw-landing-footer a.pw-landing-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1;
}
.pw-landing-footer a.pw-landing-footer__brand:hover {
    color: #ffffff;
}
.pw-landing-footer__brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.16);
    object-fit: contain;
}
.pw-landing-footer__brand-suffix {
    font-family: var(--font-serif);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.pw-landing-footer__tagline {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    max-width: 38ch;
}
.pw-landing-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}
@media (max-width: 768px) {
    .pw-landing-footer__grid {
        grid-template-columns: 1fr;
    }
}
