/*
Theme Name: Abrazo de Oso
Theme URI: https://abrazodeoso.org/
Author: Abrazo de Oso
Description: Custom WordPress theme for Abrazo de Oso.
Version: 1.0.0
Text Domain: abrazo-de-oso
*/

/* =========================
   GLOBAL
========================= */

:root {
    --ado-primary: #780933;
    --ado-secondary: #f3ebee;
    --ado-dark: #161314;
    --ado-light: #fafafa;
    --ado-accent: var(--ado-primary);
    --ado-font-body: 'Rubik', sans-serif;
    --ado-font-title: 'Rubik Mono One', monospace;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--ado-dark);
    font-family: var(--ado-font-body);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 300;
}

main#wp--skip-link--target {
    padding: 0;
}

.site-main {
    flex: 1 0 auto;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    top: 12px;
    left: 12px;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--ado-light);
    color: var(--ado-dark);
}


/* =========================
   HEADER / MENU
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(22, 19, 20, 0.58), rgba(22, 19, 20, 0.32));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.primary-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
}

.primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
    color: var(--ado-secondary);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero-banner {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url("https://abrazodeoso.org/wp-content/uploads/2026/07/website-banner-2.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 100%;
    padding: 120px 20px 40px;
    overflow-x: hidden;
}

    .hero-content h1 {
        font-family: var(--ado-font-body);
        margin: 0;
        font-size: 7rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0;
    }

.hero-line {
    width: 280px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px auto 18px;
}

.hero-tagline {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.donate-btn,
.linktree-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 48px;
    margin-top: 30px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.donate-btn {
    background: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #000;
    backdrop-filter: blur(12px);
    margin: 30px auto;
}

.linktree-btn {
    height: 52px;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, rgba(22, 19, 20, 0.58), rgba(22, 19, 20, 0.32));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #fff;
}

    .donate-btn:hover,
    .linktree-btn:hover {
        transform: translateY(-2px);
    }

        .donate-btn:hover,
        .donate-btn:hover i {
            color: var(--ado-primary);
        }

    .donate-btn i,
    .linktree-btn i {
        font-size: 1.2rem;
    }

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 60px 0 14px;
}

    .social-icons a {
        width: 55px;
        height: 55px;
        border: 1.5px solid #fff;
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-icons i {
        font-size: 1.35rem;
    }

.email {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    overflow-wrap: break-word;
}


/* =========================
   SECTIONS
========================= */
.about-section,
.programa-fenix-section,
.historias-section,
.support-section {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1350px;
    width: 100%;
}

.about-section {
    padding-top: 60px;
}

.section-title {
    text-align: center;
}

    .section-title h1,
    .section-title h3 {
        color: #f5f5f5;
        font-family: var(--ado-font-body);
        font-weight: 800;
        margin: 0;
        text-align: center;
        letter-spacing: 0;
        text-transform: none;
    }

    .section-title h1 {
        font-size: 56px;
    }

    .section-title h3 {
        font-size: 24px;
        letter-spacing: 0;
        text-transform: none;
    }

    .section-title span {
        color: var(--ado-primary);
    }

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

    .title-separator span {
        width: 90px;
        height: 1px;
        background: var(--ado-primary);
    }

    .title-separator i {
        width: 10px;
        height: 10px;
        background: var(--ado-primary);
        border-radius: 50%;
    }


/* =========================
   MISSION / FENIX TEXT
========================= */

.about-section {
    background-image: url("https://abrazodeoso.org/wp-content/uploads/2026/06/about-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-section,
.fenix-section {
    text-align: center;
    color: #f5f5f5;
    padding: 30px 20px;
}

    .mission-section h2,
    .fenix-section h2 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 0;
        font-weight: 300;
    }

.mission-line {
    width: 40px;
    height: 1px;
    background: var(--ado-primary);
    margin: 5px auto 16px;
}

.mission-section p,
.fenix-section p {
    margin: 0 auto;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

.mission-section strong,
.fenix-section strong,
.glass-card strong {
    color: var(--ado-accent);
    font-weight: 600;
}


/* =========================
   INFO CARDS
========================= */

.info-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 0 20px;
}

.glass-card {
    width: 430px;
    min-height: 285px;
    padding: 35px 35px 30px;
    text-align: center;
    border: 1px solid rgba(120, 9, 51, 0.1);
    border-radius: 20px;
    background: radial-gradient(circle at top center, rgba(120, 9, 51, 0.18), transparent 45%), linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 0 40px rgba(120, 9, 51, 0.08), 0 18px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.card-icon-circle {
    width: 98px;
    height: 98px;
    margin: -8px auto 24px;
    border-radius: 50%;
    border: 1px solid rgba(120, 9, 51, 0.75);
    background: radial-gradient(circle, rgba(120, 9, 51, 0.45), rgba(20, 20, 24, 0.95));
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.03), inset 0 0 24px rgba(120, 9, 51, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon-circle i {
        color: #fff;
        font-size: 38px;
    }

.glass-card h3 {
    margin: 0;
    color: #f4f4f4;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0;
}

.card-line {
    width: 50px;
    height: 1px;
    margin: 15px auto 22px;
    background: var(--ado-primary);
}

.glass-card p {
    margin: 0;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 300;
}

#vision-card {
    width: 100%;
    max-width: 900px;
    margin-top: 30px;
}


/* =========================
   PROGRAMA FENIX
========================= */

.fenix-section {
    position: relative;
    color: #fff;
}

.programa-fenix-section {
    background-image: url("https://abrazodeoso.org/wp-content/uploads/2026/06/fenix-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fenix-section > p {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 60px;
}

.objetivos-wrap {
    max-width: 430px;
    margin-left: 200px;
}

.objetivos-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.objetivos-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid rgba(120, 9, 51, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .objetivos-icon i {
        font-size: 22px;
    }

.check-circle {
    width: 24px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid var(--ado-primary);
    border-radius: 50%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

    .check-circle i {
        color: #fff;
        font-size: 13px;
    }

.objetivos-heading h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 400;
    text-align: left;
}

.heading-line {
    display: block;
    width: 85px;
    height: 2px;
    background: var(--ado-primary);
    margin-top: 10px;
}

.objetivo-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(120, 9, 51, 0.18);
}


    .objetivo-item p {
        margin: 0;
        font-size: 18px;
        font-weight: 300;
        text-align: left;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.9);
    }


/* =========================
   HISTORIAS
========================= */
.historias-section {
    background-image: url("https://abrazodeoso.org/wp-content/uploads/2026/06/about-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.historias-section {
    padding: 40px 24px;
    color: #fff;
}

    .historias-section .section-title {
        margin-bottom: 40px;
    }

.historias-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.historia-card {
    border: 1px solid rgba(120, 9, 51, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.historia-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.historia-content {
    padding: 26px 24px 22px;
    text-align: center;
}

    .historia-content h3 {
        margin: 0;
        color: #fff;
        font-size: 22px;
        letter-spacing: 0;
        font-weight: 300;
    }

.historia-line {
    display: block;
    width: 38px;
    height: 1px;
    background: var(--ado-primary);
    margin: 10px auto 22px;
}

.historia-content p {
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.historia-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    color: var(--ado-primary);
    font-size: 15px;
    font-weight: 400;
}

    .historia-link span {
        font-size: 24px;
        line-height: 1;
    }


/* =========================
   SUPPORT CTA
========================= */

.support-section {
    max-width: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.1);
}

.support-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 56px max(48px, calc((100vw - 1000px) / 2));
    border: 0;
    border-radius: 0;
    background: var(--ado-dark);
    color: #fff;
}

.support-icon {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    border: 1px solid var(--ado-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support-icon i {
        color: #fff;
        font-size: 30px;
    }

.support-text {
    flex: 1;
}

    .support-text p {
        margin: 0;
        font-size: 22px;
        line-height: 1.2;
        font-weight: 300;
    }

    .support-text strong {
        display: block;
        color: var(--ado-primary);
        font-size: 22px;
        line-height: 1.2;
        font-weight: 300;
    }

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 10px 24px;
    border: 1px solid var(--ado-primary);
    border-radius: 40px;
    background: var(--ado-primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
}

    .support-btn span {
        font-size: 28px;
    }


/* =========================
   FOOTER
========================= */

.site-footer {
    flex-shrink: 0;
    width: 100%;
    padding: 0;
    background: var(--ado-primary);
    color: #fff;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    width: 100%;
    min-height: 48px;
    padding: 7px 24px;
    background: var(--ado-primary);
}

.site-footer__email {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.site-footer__donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 9px;
    background: #fff;
    color: var(--ado-primary);
    font-size: 19px;
    font-family: var(--ado-font-title);
    font-weight: 400;
    letter-spacing: 0;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    font-size: 25px;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    color: var(--ado-secondary);
}

.content-page {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 24px;
    color: var(--ado-light);
}

.content-page h1 {
    font-family: var(--ado-font-title);
    font-weight: 400;
    letter-spacing: 0;
}


/* =========================
   QUIENES SOMOS PAGE
========================= */

.about-story-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 14%, rgba(120, 9, 51, 0.14), transparent 26%),
        radial-gradient(circle at 96% 82%, rgba(120, 9, 51, 0.18), transparent 30%),
        linear-gradient(135deg, #070707 0%, #161314 54%, #090808 100%);
    color: #fff;
}

.about-story-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(120, 9, 51, 0.42) 0 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 1px);
    background-size: 220px 220px, 1px 100%, 100% 1px;
    background-position: 90% 8%, 50% 0, 0 320px;
    opacity: 0.34;
}

.about-story-container {
    position: relative;
    z-index: 1;
    width: min(100%, 1160px);
    margin: 0 auto;
    padding-left: 44px;
    padding-right: 44px;
}

.about-story-hero {
    padding: 58px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story-intro {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 245px;
}

.about-story-title-block {
    padding: 30px 54px 36px 0;
}

.about-story-title-block h1,
.daniel-story h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: 0;
}

.about-story-title-block h1 span,
.about-story-timeline h2 span,
.daniel-story h2 span {
    display: block;
    color: var(--ado-primary);
}

.about-story-title-line {
    display: block;
    width: 58px;
    height: 2px;
    margin: 24px 0 20px;
    background: var(--ado-primary);
}

.about-story-title-block p,
.about-story-quote p,
.about-story-main p,
.milestone-row p,
.daniel-story p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
}

.about-story-title-block strong {
    color: #fff;
    font-weight: 500;
}

.about-story-main strong {
    color: #fff;
    font-weight: 500;
}

.about-story-quote {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 46px 38px 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 78% 10%, rgba(120, 9, 51, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.08));
}

.about-story-quote::before {
    content: none;
}

.about-story-quote > * {
    position: relative;
    z-index: 1;
}

.about-story-quote p {
    max-width: 760px;
}

.quote-mark {
    display: block;
    margin-bottom: 6px;
    color: var(--ado-primary);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 58px;
    line-height: 0.5;
    font-weight: 700;
}

.about-story-body {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.05fr) minmax(260px, 0.82fr);
    align-items: start;
}

.about-story-main {
    padding: 24px 38px 24px 0;
}

.about-story-main p + p,
.daniel-story p + p {
    margin-top: 16px;
}

.about-story-principle {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 20px;
    width: min(calc(100vw - 88px), 1072px);
    margin-top: 24px;
    padding: 22px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
}

.about-story-principle i {
    color: var(--ado-primary);
    font-size: 44px;
}

.about-story-inline-principle {
    display: none;
}

.about-story-timeline {
    padding: 26px 0 20px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-story-timeline h2 {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    line-height: 1.05;
    font-weight: 700;
}

.about-story-timeline h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 9px;
    background: var(--ado-primary);
}

.about-story-timeline ol {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0 0 0 34px;
    list-style: none;
}

.about-story-timeline ol::before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.34);
}

.about-story-timeline li {
    position: relative;
}

.about-story-timeline li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -34px;
    width: 11px;
    height: 11px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: var(--ado-primary);
    box-shadow: 0 0 0 2px rgba(120, 9, 51, 0.28);
}

.about-story-timeline strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ado-primary);
    font-size: 14px;
    font-weight: 800;
}

.about-story-timeline span {
    display: block;
    max-width: 220px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.32;
    font-weight: 300;
}

.about-story-slider-section {
    padding: 24px 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story-slider-section .about-story-container {
    max-width: 1160px;
}

.about-story-slider {
    display: grid;
    min-height: 112px;
}

.about-story-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 26px;
    min-height: 112px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.about-story-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.about-story-slide i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-left: 2px solid var(--ado-primary);
    color: var(--ado-primary);
    font-size: 34px;
}

.about-story-slide p {
    max-width: 980px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    line-height: 1.5;
    font-weight: 300;
}

.about-story-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
}

.about-story-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-story-slider-dots button:hover,
.about-story-slider-dots button:focus-visible,
.about-story-slider-dots button.is-active {
    border-color: var(--ado-primary);
    background: var(--ado-primary);
    transform: scale(1.08);
}

.about-story-milestones {
    display: none;
}

.milestone-row {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 26px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.milestone-row:last-child {
    border-bottom: 0;
}

.milestone-row i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-left: 2px solid var(--ado-primary);
    color: var(--ado-primary);
    font-size: 34px;
}

.milestone-row p {
    max-width: 880px;
    font-size: 15.5px;
}

.daniel-story {
    position: relative;
    overflow: hidden;
    padding: 28px 0 42px;
}

.daniel-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(220px, 0.58fr);
    align-items: end;
    gap: 28px;
}

.daniel-story h2 {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.1;
}

.daniel-story h2 span {
    display: inline;
}

.daniel-story p {
    max-width: 790px;
    font-size: 14.5px;
    line-height: 1.5;
}

.daniel-story-photo {
    position: relative;
    align-self: stretch;
    justify-self: start;
    display: flex;
    align-items: flex-end;
    min-height: 0;
    margin: 0 0 -42px;
    overflow: visible;
    padding-left: 0;
}

.daniel-story-photo::before {
    content: "";
    position: absolute;
    inset: auto 2% 0 0;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(120, 9, 51, 0.22), transparent 66%);
    filter: blur(18px);
    pointer-events: none;
}

.daniel-story-photo img {
    position: relative;
    display: block;
    width: min(126%, 430px);
    height: auto;
    max-height: 620px;
    object-fit: contain;
    object-position: center bottom;
    filter: saturate(0.95) brightness(0.82);
}

/* =========================
   MOBILE STYLES
========================= */

@media (max-width: 900px) {
    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .glass-card {
        width: 100%;
        max-width: 430px;
    }

    .objetivos-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .about-story-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .about-story-intro,
    .about-story-grid,
    .daniel-story-layout {
        grid-template-columns: 1fr;
    }

    .about-story-intro,
    .about-story-grid,
    .about-story-slider-section .about-story-container,
    .daniel-story-layout {
        width: auto;
        margin-right: 0;
        padding-right: 28px;
    }

    .about-story-title-block,
    .about-story-main,
    .about-story-quote,
    .about-story-timeline {
        padding-left: 0;
        padding-right: 0;
    }

    .about-story-quote,
    .about-story-timeline {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-story-quote {
        margin-top: 0;
        width: 100vw;
        margin-left: -28px;
        margin-right: -28px;
        padding: 34px 28px;
        background-position: center top;
    }

    .about-story-quote p {
        max-width: none;
    }

    .about-story-title-block h1 {
        font-size: 58px;
    }

    .milestone-row {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }

    .about-story-slide {
        grid-template-columns: 54px 1fr;
        gap: 20px;
    }

    .daniel-story-photo {
        display: none;
    }

}

@media (max-width: 768px) {
    .site-header {
        position: fixed;
    }

    .primary-navigation {
        justify-content: flex-end;
        min-height: 58px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .primary-menu {
        position: absolute;
        top: 58px;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 18px;
        background: rgba(22, 19, 20, 0.94);
    }

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

    .primary-menu a {
        min-height: 44px;
    }

    .hero-banner {
        min-height: 100vh;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 0;
    }

    .hero-tagline,
    .email {
        letter-spacing: 0;
    }

    .social-icons {
        margin-top: 70px;
    }

    .section-title h1 {
        font-size: 35px;
        margin: 0 30px;
    }

    .section-title h3 {
        font-size: 22px;
    }

    #vision-card {
        margin-left: 20px;
        margin-right: 20px;
    }

    .historias-grid {
        grid-template-columns: 1fr;
    }

    .support-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .support-text {
        flex: unset;
    }

    .site-footer__inner {
        flex-direction: column;
        gap: 18px;
        padding: 20px 18px;
    }

    .site-footer__socials {
        gap: 26px;
    }
}

@media (max-width: 560px) {
    .about-story-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-story-slider-section .about-story-container {
        padding-right: 20px;
    }

    .about-story-hero {
        padding-top: 88px;
    }

    .about-story-quote {
        margin-left: -20px;
        margin-right: -20px;
        padding: 32px 20px;
    }

    .about-story-title-block h1 {
        font-size: 48px;
    }

    .about-story-title-block p,
    .about-story-quote p,
    .about-story-main p,
    .milestone-row p {
        font-size: 15px;
    }

    .about-story-principle,
    .milestone-row,
    .about-story-slide {
        grid-template-columns: 1fr;
    }

    .about-story-principle i,
    .milestone-row i,
    .about-story-slide i {
        justify-content: flex-start;
    }

    .about-story-timeline ol {
        padding-left: 42px;
    }

    .about-story-timeline li::before {
        left: -42px;
    }
}

/* cache refresh 2026-07-17 */
/* =========================
   POSTS PAGE
========================= */

.posts-page {
    background:
        radial-gradient(circle at top right, rgba(120, 9, 51, 0.24), transparent 34rem),
        var(--ado-dark);
    color: #fff;
}

.posts-archive {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    padding: 130px 0 86px;
}

.posts-archive__header {
    margin-bottom: 36px;
}

.posts-archive__title {
    display: inline-block;
    color: #fff;
    font-family: var(--ado-font-title);
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.posts-archive__title:hover,
.posts-archive__title:focus-visible {
    color: var(--ado-primary);
}

.posts-archive__line {
    width: 72px;
    height: 2px;
    margin-top: 22px;
    background: var(--ado-primary);
}

.posts-grid {
    display: grid;
    gap: 24px;
}

.post-card {
    display: grid;
    grid-template-columns: minmax(240px, 36%) 1fr;
    min-height: 270px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.post-card__media {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background: #080707;
}

.post-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(22, 19, 20, 0.18));
}

.post-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.04) brightness(0.78);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.035);
    filter: saturate(0.94) contrast(1.06) brightness(0.86);
}

.post-card__media-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 270px;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--ado-font-title);
    font-size: 1.15rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    background:
        linear-gradient(135deg, rgba(120, 9, 51, 0.34), rgba(22, 19, 20, 0.95)),
        var(--ado-dark);
}

.post-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.post-card__meta {
    margin-bottom: 10px;
    color: var(--ado-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-card__title {
    margin: 0 0 14px;
    font-family: var(--ado-font-title);
    font-size: clamp(1.35rem, 2.2vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.post-card__title a {
    color: #fff;
}

.post-card__title a:hover,
.post-card__title a:focus-visible {
    color: var(--ado-primary);
}

.post-card__excerpt {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.62;
}

.post-card__excerpt p {
    margin: 0;
}

.post-card__button {
    align-self: flex-start;
    margin-top: 22px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(120, 9, 51, 0.72);
    transition: transform 0.2s ease, background 0.2s ease;
}

.post-card__button:hover,
.post-card__button:focus-visible {
    transform: translateY(-1px);
    background: var(--ado-primary);
}

.posts-pagination {
    margin-top: 38px;
}

.posts-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.posts-pagination a,
.posts-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.posts-pagination .current {
    background: var(--ado-primary);
}

.posts-empty {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
    .posts-archive {
        width: min(100% - 40px, 680px);
        padding-top: 112px;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card__media,
    .post-card__media-fallback {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .posts-archive {
        width: calc(100% - 32px);
        padding-top: 96px;
        padding-bottom: 64px;
    }

    .posts-archive__header {
        margin-bottom: 28px;
    }

    .post-card__body {
        padding: 26px 22px;
    }

    .post-card__media,
    .post-card__media-fallback {
        min-height: 220px;
    }
}
/* =========================
   SINGLE POST
========================= */

.single-post-page {
    background:
        radial-gradient(circle at top right, rgba(120, 9, 51, 0.22), transparent 34rem),
        var(--ado-dark);
    color: #fff;
}

.single-post-article {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    padding: 118px 0 92px;
}

.single-post-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
    gap: 44px;
    align-items: end;
    margin-bottom: 42px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.single-post-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--ado-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-post-back:hover,
.single-post-back:focus-visible {
    color: #fff;
}

.single-post-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: var(--ado-font-title);
    font-size: clamp(2.35rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.single-post-meta {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    font-weight: 400;
    text-transform: uppercase;
}

.single-post-image {
    position: relative;
    min-height: 340px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #080707;
}

.single-post-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(22, 19, 20, 0.24));
    pointer-events: none;
}

.single-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04) brightness(0.82);
}

.single-post-body {
    width: min(780px, 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.72;
}

.single-post-body > *:first-child {
    margin-top: 0;
}

.single-post-body p,
.single-post-body ul,
.single-post-body ol,
.single-post-body blockquote,
.single-post-body figure {
    margin: 0 0 1.25em;
}

.single-post-body h2,
.single-post-body h3 {
    margin: 1.7em 0 0.7em;
    color: #fff;
    font-family: var(--ado-font-title);
    line-height: 1.08;
    letter-spacing: 0;
}

.single-post-body h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.single-post-body h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.single-post-body a {
    color: #fff;
    border-bottom: 1px solid var(--ado-primary);
}

.single-post-body strong {
    color: #fff;
    font-weight: 600;
}

.single-post-body blockquote {
    padding: 18px 0 18px 24px;
    border-left: 4px solid var(--ado-primary);
    color: #fff;
    font-size: 1.18rem;
}

.single-post-body img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .single-post-article {
        width: min(100% - 40px, 760px);
        padding-top: 104px;
    }

    .single-post-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .single-post-image,
    .single-post-image img {
        min-height: 300px;
    }

    .single-post-body {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .single-post-article {
        width: calc(100% - 32px);
        padding-top: 92px;
        padding-bottom: 70px;
    }

    .single-post-hero {
        margin-bottom: 32px;
        padding-bottom: 28px;
    }

    .single-post-image,
    .single-post-image img {
        min-height: 230px;
    }
}
