/*
 Theme Name: Patrick Wieland Inc WP
 Theme URI: https://tudominio.com
 Author: David
 Description: Replica de la landing de patrickwielandinc.com para WordPress.
 Version: 1.2
 Text Domain: pwinc
*/

/* RESET BÁSICO */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
    color: #111111;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

a:hover {
    opacity: 0.8;
}

/* HEADER / NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.site-header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.site-branding-title a {
    text-decoration: none;
    color: #111111;
}

.primary-navigation {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.primary-navigation a {
    text-decoration: none;
    color: #111111;
}

/* BOTÓN MENÚ MÓVIL */

.site-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* CONTENEDOR CENTRAL */

.page-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
}

/* HERO PRINCIPAL */

.hero-heading-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.23em;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #555555;
}

.hero-heading-main {
    font-size: clamp(2.4rem, 3vw + 1rem, 2.9rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 1.25rem;
}

.hero-paragraph {
    font-size: 0.98rem;
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 48rem;
    color: #222222;
}

.hero-paragraph + .hero-paragraph {
    margin-top: 0.6rem;
}

/* CTA PRINCIPAL */

.hero-cta-wrapper {
    text-align: center;
    margin: 2rem 0 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
}

/* BLOQUES TIPO CARTA */

.section-block {
    margin-top: 2.5rem;
}

.section-block h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.23em;
    margin-bottom: 0.8rem;
    text-align: left;
    color: #555555;
}

.section-block h2 {
    font-size: 1.4rem;
    margin: 0.7rem 0;
    text-align: left;
}

.section-block p {
    margin: 0.35rem 0;
    font-size: 0.98rem;
}

/* IMAGEN CENTRAL */

.section-image-block {
    margin: 2.5rem 0 2rem;
    text-align: center;
}

.section-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 0.6rem;
}

/* BLOQUE FINAL LEARN MORE */

.section-learn-more {
    text-align: center;
    margin-top: 1.5rem;
}

.section-learn-more h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

/* FOOTER / DISCLAIMER */

.site-footer {
    border-top: 1px solid #eeeeee;
    padding: 2rem 1.5rem 3rem;
    font-size: 0.78rem;
    color: #444444;
    background: #ffffff;
}

.site-footer-inner {
    max-width: 720px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 1.25rem;
}

.footer-top-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.3rem;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: baseline;
}

.footer-meta span {
    white-space: nowrap;
}

.footer-meta a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.disclaimer {
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .site-header-inner {
        padding-inline: 1rem;
    }

    .primary-navigation {
        position: absolute;
        right: 1rem;
        top: 3.1rem;
        flex-direction: column;
        background: #ffffff;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        display: none;
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .site-nav-toggle {
        display: inline-flex;
    }
}
