/* Piero Fitness PT shared theme */

:root {
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Inter", Arial, sans-serif;
    --color-black: #050505;
    --color-pure-black: #000000;
    --color-charcoal: #121212;
    --color-carbon: #1c1c1c;
    --color-graphite: #2a2a2a;
    --color-white: #ffffff;
    --color-off-white: #ededed;
    --color-muted: #a7a7a7;
    --color-accent: #ff6b4a;
    --wrap: 1240px;
}

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

html {
    background: var(--color-black);
}

body {
    background: var(--color-black);
    color: var(--color-off-white);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--color-white);
}

.wrap {
    margin: 0 auto;
    max-width: var(--wrap);
    padding: 0 56px;
}

.eyebrow {
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 18px;
}

.site {
    background: var(--color-pure-black);
    color: var(--color-white);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 36px;
    padding: 22px 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
    color: inherit;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.brand-int {
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.primary {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 0.9rem;
    font-weight: 600;
}

.primary a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.consult {
    border: 1px solid var(--color-white);
    color: var(--color-black);
    background: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    border: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.25rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.btn-light {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--color-white);
}

.btn-dark {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.text-link {
    color: var(--color-white);
    font-weight: 700;
}

.site-foot {
    background: var(--color-pure-black);
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 56px 36px;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 42px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.foot-top .small {
    color: rgba(255, 255, 255, 0.62);
    margin-top: 18px;
    max-width: 34rem;
}

.foot-top .label {
    color: var(--color-accent);
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.foot-top li {
    padding: 4px 0;
}

.foot-top a {
    color: inherit;
    text-decoration: none;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
}

@media (max-width: 1000px) {
    .site {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .primary {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-right {
        justify-content: flex-start;
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .wrap {
        padding: 0 22px;
    }

    .site {
        padding: 18px 22px;
    }

    .primary {
        gap: 10px 18px;
    }

    .site-foot {
        padding: 52px 22px 30px;
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 34px;
    }

    .foot-bottom {
        flex-direction: column;
    }
}
